5

Is there any concreate way to symbolicate crash logs from my app, i have following things

  • dSYM file
  • .ipa Application file
  • myapp.crash

    -

  • I have tried symbolicatecrash script but it does not work somehow
  • Xcode does not work also i have Xcode 4.3
  • I even tried system 'atos' command but it gives me some c or c++ file

I dont have build file in my archive is it because of that, because app was build in different machine ?

Dhara Patel
  • 138
  • 1
  • 1
  • 7

2 Answers2

6

This may be too late.. but i saw the method in another link that i am now trying to find :P

  • Rename your .ipa file to .zip
  • Open the zip file to extract the app
  • now run symbolicatecrash script or delete the .symbolicated folder
  • and restart xcode

if not helpful to you, hope this helps others.

Edit: found the place Symbolicating iPhone App Crash Reports

Community
  • 1
  • 1
Karthik T
  • 31,456
  • 5
  • 68
  • 87
3

Aside from xcode's tools, you can use atos: https://stackoverflow.com/a/4954949/312725

Be sure to take slide into account as well: https://stackoverflow.com/a/13576028/312725

Community
  • 1
  • 1
Max Yankov
  • 12,551
  • 12
  • 67
  • 135