How do I symbolicate a copy/pasted crash report?

前端 未结 3 2166
南笙
南笙 2020-12-30 10:04

I have a user who is experiencing a crash using the app store version of an iPhone app. The crash is not reported via iTunes connect and the user is unable to sync with iTu

3条回答
  •  失恋的感觉
    2020-12-30 10:49

    This is similar to the question How to Manually Symbolicate iOS Crash to View Crash Logs

    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.

提交回复
热议问题