How to do symbolification from crash reports

Open the Terminal and do the following

  1. Fix the Xcode path
      sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer/

    2.  Export the path

        export DEVELOPER_DIR=/Applications/Xcode.app


    3.  Set symbolification path

    cd    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/ PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources


    4.  Symbolicate

   ./symbolicatecrash /somePath/MyCrashLogFile.crash /somePath/MyAppName.app.dSYM



Also To find symbolicatecrash run this from the terminal:

find /Applications/Xcode.app -name symbolicatecrash -type f

This should return:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash


Comments