How to use Apple's Crash Report in xCode?

I got a report from Crash from Apple (joy). I understand that I can symbolize this report to see what the failure is in my code. I understand, I need dSYM and build a binary to do this.

My question is, what exactly steps need to be done in xCode for this? I have a build folder that I sent using iTunes connect saved on my computer. How to get dSYM and binary in xcode so that I can drag and drop the crash report?

Thanks to everyone in advance,

Martin

+4
source share
1 answer

You can drag and drop the crash log into the "Device logs" section of the "Xcode Organizer" window. Xcode will automatically identify it if it finds the dSYM file on your disk.

+1
source

All Articles