Reputation: 1317
My application is crashing, and I cannot find an exact way how to reproduce the crash for two days. So, I would like to decode the dSYM file, and to see there what's the problem (hoping it helps). How can I get the dSYM file from the device?
Upvotes: 4
Views: 6964
Reputation: 1281
You will probably need to get the dSYM from the Xcode build products.
But, a far easier way to get the stack trace is to either make the app crash while running in the iOS Simulator or on a tethered iOS device in Xcode (i.e. when running with Product -> Run in Xcode), or by connecting your device and viewing the desymbolicated crash reports in the Devices section of the Xcode Organiser Devices tab.
(The above all assumes that you've build the app in Xcode on a machine you can access and you've kept the archives for the build in the Xcode Organizer.)
For more information see Apple's tech note: Understanding and Analyzing iOS Application Crash Reports.
Upvotes: 8