Debugging an iOS TestFlight crash

Okay. Had another crash, had another go. The links I posted earlier provide the solution with:

  1. Right click on your .xccrashpoint and extract the .crash file
  2. alias your symbolicatecrash command: alias symbolicatecrash=‘/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash’
  3. symbolicatecrash Crash170_1.crash Matchoo170.dSYM
  4. You may need to define DEVELOPER_DIR (you’ll get an error if you do): export DEVELOPER_DIR=‘/Applications/Xcode.app/Contents/Developer’

Then fingers crossed and wait a while and boom lots of nice debug callstacks.