Search code examples
iosxcodexcode7crash-reportssymbolicatecrash

Xcode Crash Organizer does Not Symbolicate .xccrashpoint Files


The new Xcode 7 "Crashes" tab in the organizer shows a handful of crashes from the AppStore for my app. According to the documentation, there should be a stack trace. However, none of the 6 crashes have symbolicated stack traces: enter image description here

I've tried clicking "Open in Project" but it's just as useless: enter image description here

Of course, I included the dsym and debug info when I submitted to the store. I still have the submission build in my organizer, so the dsyms are still present on my machine. How can I get a proper stack trace on this?


Solution

  • Not ideal, but if you right-click an .xccrashpoint file, select "Show Package Contents", you can navigate its folder structure to find the actual .crash file which you can extract and then symbolicate through the command line using steps described here:

    Run

    /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/symbolicatecrash
    

    Ensure that DEVELOPER_DIR is set:

    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer