Kelan
Kelan

Reputation: 2276

How to add symbols from System Frameworks (e.g. UIKit) when symbolicating a crash log?

I have a crash log from my iPad app and the corresponding dSYM file, so I can use the symbolicatecrash script to add the symbols from my code. However, I'd also like to add the symbols from the System frameworks (such as UIKit, CoreFoundation, etc.).

Is there a way to add those symbols also?

I've noticed that the Xcode Organizer will add System framework symbols when it automatically symbolicates crash logs it gets from the device (even for apps that I got from the AppStore), so I assume that info exists somewhere.

Edit:

A few more details:

Upvotes: 2

Views: 1449

Answers (1)

jmdecombe
jmdecombe

Reputation: 782

You must drag both the .app and the .app.DSYM files matching the build used to produce the crash log into the PROJETS & SOURCES section of the Organizer window. Then, you must drag the crash logs into the IOS DEVELOPMENT/Device Logs section of that same window, and they will be properly symbolicated for you, with symbols for every frame of every thread.

Upvotes: 1

Related Questions