Symbolicating iPhone App Crash Reports

后端 未结 25 2496
迷失自我
迷失自我 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:02

    For those using Airbrake, there's a solid response above but it wouldn't work for me without tweaking:

    Works for some memory addresses but not others, not sure why...

    • Create new dir on desktop or wherever
    • Find archive in question in Xcode organizer
    • Double tap to reveal in finder
    • Double tap to show bundle contents
    • Copy .dSYM file and .app file into new dir
    • cd into new dir
    • Run this command: atos -arch armv7 -o 'Vimeo.app'/'Vimeo'
    • Terminal will enter an interactive move
    • Paste in memory address and hit enter, it will output method name and line number
    • Alternatively, enter this command: atos -arch armv7 -o 'Vimeo.app'/'Vimeo' To get info for one address only

提交回复
热议问题