Force symbolicatecrash to use a specific .app and .dSYM file?

前端 未结 5 712
生来不讨喜
生来不讨喜 2021-02-01 11:11

I have a .crash log from an ad-hoc version of my app that symbolicatecrash refuses to symbolicate. I have already applied the .patch to remove the \'die\' command in symbolicate

5条回答
  •  南笙
    南笙 (楼主)
    2021-02-01 11:48

    There is a new process for extracting build UUIDs described here:

    https://developer.apple.com/library/ios/qa/qa1765/_index.html

    This is now the magical command to run to extract build UUID:

    xcrun dwarfdump --uuid Example.app/Example | tr '[:upper:]' '[:lower:]' | tr -d '-'
    

提交回复
热议问题