I am trying to symbolize the crash log I received from a user via email.
I used the traditional symbolicatecrash command in Xcode.app, however the symbolicatecrash command just failed and returns the following message.
$/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash MY_APP.crash MY_APP.app.dSYM > readable.crash Unsupported crash log version: 12 at /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash line 614.
And, as they say, the version of the crash log report that I want to symbolize is 12.
Date/Time: 2016-10-15 15:40:42.625 +0900 OS Version: Mac OS X 10.12 (16A323) Report Version: 12
My application is a pure Cocoa application for macOS (previously OS X, not iOS) that was created using Xcode 8.0 on macOS Sierra, distributed on the Mac App Store and written in Swift.
Meanwhile, the organizer of Xcode 8.0 successfully symbolizes the crash log of the same version of the application that was received through MAS. Therefore, I suppose the dSYM file is at least the correct one. But something is going wrong.
Does anyone know how I can symbolize the plaintext crash log, its report version is 12?
source share