Symbolicating iPhone App Crash Reports

后端 未结 25 2563
迷失自我
迷失自我 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 05:55

    The combination that worked for me was:

    1. Copy the dSYM file into the directory where the crash report was
    2. Unzip the ipa file containing the app ('unzip MyApp.ipa')
    3. Copy the application binary from the resulting exploded payload into the same folder as the crash report and symbol file (Something like "MyApp.app/MyApp")
    4. Import or Re-symbolicate the crash report from within Xcode's organizer

    Using atos I wasn't able to resolve the correct symbol information with the addresses and offsets that were in the crash report. When I did this, I see something more meaningful, and it seems to be a legitimate stack trace.

提交回复
热议问题