How to symbolicate crash report from Apple received in .txt format not .crash format

前端 未结 5 1064
离开以前
离开以前 2020-12-04 17:12

My app got rejected from Apple and I have got crash reports in .txt format instead of .crash format.

How can I symbolicate or read the crash report ?

5条回答
  •  自闭症患者
    2020-12-04 17:56

    By dragging the .crash file in organiser was not completely symbolicating my crash. So i tried another way of doing it.

    If archived builds is already on your computer. Then you don't need to give .app and dsym file. Just run below commands in terminal.

    export DEVELOPER_DIR="/Applications/Xcode.app/Contents/Developer"
    

    Hit enter

        /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash /Your/Crash/File/Path/c.crash > /Your/Symbolicated/Crash/File/Path/c.crash
    

    Hit enter and check the path you have given.

提交回复
热议问题