Strip Debug Symbols During Copy : should be YES for non-debug configuration builds, as it will blow your application with binary 30-50%
Debug Information Format : there must be a DWARF with dSYM File for all configurations in order to be able to symbolize your characters from any binary file.
Now I assume that you are trying to do this on debug builds, in builds that are not the latest build command results in Xcode. You must remember that every time you run the build command, a new executable file and a new dSYM package are created, and the previous one is redefined! (Except when you use the Archive function)
Symbology script analyzes the UUID from your application crash report and looks for the corresponding .app AND.app.dSYM package through the spotlight. Therefore, if any spotlight does not index the target path, or the binaries are replaced with another launch of the assembly, it will not be able to symbolize application symbols.
Kerni
source share