morcutt
morcutt

Reputation: 3749

Understanding iOS Crash Report via Test Flight

I have begun testing my app via Test Flight and from time to time I get I receive this error: _sigtramp + 42. It only occurs at application launch and so far only on iOS 6.0. Has anyone else ran into this or can you help me located what is going wrong?

Test Flight Stacktrace

Upvotes: 3

Views: 1574

Answers (1)

Eric
Eric

Reputation: 5681

Try adding a .dsym file to your testflight build so that it can symbolicate the debug log.

  1. Go to xcode's organizer
  2. Select the Archives tab
  3. Right click on the archive you used to upload the build to testflight
  4. Select "Show in finder"
  5. Right click on the .xarchive file and select "Show package contents"
  6. Go to the dSYMs folder
  7. Right click the .dSYM file and compress the file (zip it)
  8. Drop that zip file into testflight under the Crashes tab where it says "Drop dSYM here"

Refresh the page, and hopefully the debug information will give you some more information as to what's happening.

Upvotes: 5

Related Questions