Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Symbolicate crashlog of locally built iOS App

I've read numerous threads on stackoverflow and on apple site and I still cannot get basics to work. I make a debug build of my app, I install it on my phone, this build intentionally crashes. I run this app while not connected with Xcode debugger. The app crashes, how do I see now function names and line numbers of the crash backtrace?

I tried to open devices windows in Xcode and there Iviewed the log, I see my app crashlog, I see that there were multiple function calls in my code before it crashed, but all of them are shown as hex addresses and not actually symbolicated. What do I need to do to make it work?

like image 634
Pavel P Avatar asked May 25 '17 00:05

Pavel P


1 Answers

Open Project Settings. Go to your Target and set the Debug Information Format to DWARF with dSYM File for Debug. Do the same for the Project


Project:
Project


Target: Target

like image 64
badhanganesh Avatar answered Sep 21 '22 09:09

badhanganesh