Does Xcode output a symbol file or is it possible to produce one? We're capturing our own crash reports from devices in our own format and would like to symbolise them so we can have a faster turnaround than waiting for Apple to make crash reports available.
dSYM bundle folder which contains the symbol file further inside Contents/Resources/ . You can also generate a . dSYM bundle file by running dsymutil on a binary/library.
“Open Quickly” > Click on the Symbols dropdown menu at the top of the editor > Select the selector to jump to it. Click on “Project Symbols” in the “Groups and Files” section on the left sidebar, and type in a name in the Search text field in the top right of the XCode window.
. symbols files are generated when you submit machine code instead of bitcode to the App Store. They are used as part of the mechanism used to deliver symbolicated crash reports to your Xcode Organizer. They are lighter weight than the complete . dSYM file, which contains far more debugging info.
A dSYM file is an ELF file that contains DWARF (debugging with attributed record formats) debug information for your application. DWARF is a debugging file format that supports source-level debugging.
Ensure that your application is built with debug flags enabled.
The file should be in your library folder:
~/Library/Developer/Xcode/DerivedData/<weird-app-identifier>/Build/Products/Debug-iphoneos
Inside this folder, there will be a .dSYM bundle folder which contains the symbol file further inside Contents/Resources/
.
You can also generate a .dSYM bundle file by running dsymutil
on a binary/library.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With