-1

I'm looking to try and symbolicate my iPhone app's crash reports.

I retrieved the crash reports from the Organizer, the thing is I haven't release my app to the App Store! So can I make use of these crash reports before releasing the app and how can I do that?

Any help would be greatly appreciated, thanks.

M.Alatrash
  • 1,270
  • 1
  • 12
  • 30

1 Answers1

0

Try such command:

symbolicatecrash -A -v crashlog.crash app.dSYM

where app.dSYM you can get from archive of application and symbolicatecrash can be found in /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/

German Saprykin
  • 6,631
  • 2
  • 29
  • 26
  • symbolicatecrash Not Found!! – M.Alatrash Jun 06 '13 at 08:08
  • 1
    What is `symbolicatecrash`? Did you mean [atos](https://developer.apple.com/library/mac/documentation/Darwin/Reference/Manpages/man1/atos.1.html)? – CodaFi Jun 06 '13 at 08:17
  • `symbolicatecrash` is correct. It's a command line tool for doing what it says. I use it all of the time. For me it is a link in `/usr/local/bin` to `/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash` – rmaddy Jun 06 '13 at 15:25
  • Try this `ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Develope‌​r/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicat‌​ecrash/symbolicatecrash /usr/local.bin/symbolicatecrash` – German Saprykin Jun 07 '13 at 10:41