Symbolicating iPhone App Crash Reports

后端 未结 25 2507
迷失自我
迷失自我 2020-11-21 05:38

I\'m looking to try and symbolicate my iPhone app\'s crash reports.

I retrieved the crash reports from iTunes Connect. I have the application binary that I submitted

25条回答
  •  一生所求
    2020-11-21 06:06

    I also put dsym, app bundle, and crash log together in the same directory before running symbolicate crash

    Then I use this function defined in my .profile to simplify running symbolicatecrash:

    function desym
    {
        /Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -A -v $1 | more
    }
    

    The arguments added there may help you.

    You can check to make sure spotlight "sees" your dysm files by running the command:

    mdfind 'com_apple_xcode_dsym_uuids = *'
    

    Look for the dsym you have in your directory.

    NOTE: As of the latest Xcode, there is no longer a Developer directory. You can find this utility here:

    /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Vers‌​ions/A/Resources/symbolicatecrash

提交回复
热议问题