Xcode Crash Organizer does Not Symbolicate .xccrashpoint Files

前端 未结 4 978
日久生厌
日久生厌 2020-12-08 14:11

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. Howe

4条回答
  •  被撕碎了的回忆
    2020-12-08 15:12

    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
    

提交回复
热议问题