How do I symbolicate a copy/pasted crash report?

前端 未结 3 2189
南笙
南笙 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:41

    One way to symbolicate a crash log is to run the following command on terminal:

    xcrun atos -o MyApp.app/MyApp -arch armv7 -l 0xb7000 -f MyApp.crash

    Replace the example hexadecimal number(0xb700) in the command above with the base load address. Base load address is the first memory address in the line immediately after

    "Binary Images:"

    To get the .app file:

    1. Right click on the xcarchive file and select Show Package Contents
    2. The .app file is in the Products/Applications directory.

提交回复
热议问题