Symptoms:
- I want to symbolicate a call stack from a crash on my Android (IL2CPP) production build in libil2cpp.so, but I have been unable to find the symbols for that library.
Cause:
You haven't enabled symbol generation in the build settings window.
Resolution:
In the build settings window, you should see an option to generate a .zip with your symbols when you create a build:
After a build is completed, the symbols zip file should be in the same folder as the apk.
The Public Symbols package contains the information needed to resolve function addresses to human-readable strings. Because it doesn't contain debug information, it's much smaller than the Debugging Symbols package.
The Debugging Symbols package contains complete debugging information and a symbol table. Use it to:
- Resolve stack traces and debug apps for which you have source code available.
- Place breakpoints and debug the code with the native debugger.
If your Unity version doesn't have an option to generate symbols, you can find the symbols after each build at ProjectFolder\Temp\StagingArea\libs\[architecture]
More Information:
For more information, consult the following documentation:
Comments
0 comments
Article is closed for comments.