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.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.