Symbolicate adhoc iphone app crashes

前端 未结 3 1876
慢半拍i
慢半拍i 2021-01-31 06:05

I can\'t manage to make my code symbolicated ... I read the part \"below\" :

Given a crash report, the matching binary, and its .dSYM file, symbolicat

3条回答
  •  感情败类
    2021-01-31 06:34

    Steps to analyze crash report from apple:

    1. Copy the release .app file which was pushed to the appstore, the .dSYM file that was created at the time of release and the crash report receive from APPLE into a FOLDER.

    2. OPEN terminal application and go to the folder created above (using CD command)

    3. atos -arch armv7 -o '(your .app file name here)'/'(.dSYM filename here)' (memory location in the crash report where the crash occured). The memory location should be the one at which the app crashed as per the report.

    Ex : atos -arch armv7 -o 'app name.app'/'app name' 0x0003b508

    This would show you the exact line, method name which resulted in crash.

    Thanks

提交回复
热议问题