Symbolicate crash in iOS8 with Xcode 6 .1

后端 未结 4 910
执笔经年
执笔经年 2020-12-08 03:14

I used to symbolicate the crash report in Xcode 5.1.1 directly as there was \"Symbolicate & Re-symbolicate\" in Devices section of Organiser. But after upgrading to Xcod

4条回答
  •  离开以前
    2020-12-08 03:54

    A plugin is available for Xcode under the Product menu. This plugin is available through Alcatraz package manager or can be directly downloaded from github.

    This plugin internally incorporates a shell script that does the set up of running the following commands for manual crash symbolication.

    1. Set an alias to symbolicatecrash.pl perl script

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

    1. To find symbolicatecrash, should it differ from the alias above:

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

    1. Set the DEVELOPER_DIR variable:

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

    1. With the dSYM the crash can be symbolicates as:

    symbolicatecrash /path/to/MyApp_2012-10-01_Device.crash /path/to/MyApp.app.dSYM.

提交回复
热议问题