iOS9: duplicated lines in crash reports are causing symbolicatecrash to get stuck

后端 未结 1 1595
予麋鹿
予麋鹿 2021-02-07 07:27

This is not a question because I have already found a workaround. I am publishing it so that others can take advantage on the hours I was spending on it, and us

相关标签:
1条回答
  • 2021-02-07 07:47

    You can use the following shell script which will patch symbolicatecrash to fix it:

    curl -o /tmp/t.patch https://raw.githubusercontent.com/zqxiaojin/OptSymbolicatecrash/master/fix_dead_loop.patch && cd `xcode-select -p`/../SharedFrameworks/DTDeviceKitBase.framework/Versions/A/Resources/ && sudo patch symbolicatecrash  /tmp/t.patch && cd -
    

    Or copy the symbolicatecrash from my github https://github.com/zqxiaojin/OptSymbolicatecrash

    0 讨论(0)
提交回复
热议问题