swrobel
swrobel

Reputation: 4230

Is it possible to generate dSyms for a build that was already released?

Due to XCode 14 deprecating bitcode, I'm no longer able to download the dSyms from App Store Connect to submit to Bugsnag like I used to. Unfortunately I realized this too late, and I've released the latest version of our app in the store.

I had build settings as DEBUG_INFORMATION_FORMAT = dwarf unfortunately, so I don't have any dSyms locally. Is there some way, with the .xcarchive (which I still have locally), or by rebuilding the same version/build number of the app with DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym", to create the dSyms after-the-fact?

Upvotes: 2

Views: 1617

Answers (2)

swrobel
swrobel

Reputation: 4230

Re-building with dsyms enabled and then hex-editing to replace the UUID with the missing one seemed to work for me.

Upvotes: 1

ali6p
ali6p

Reputation: 1763

Check this article to generate/find dSyms file:

https://firebase.google.com/docs/crashlytics/get-deobfuscated-reports?authuser=0&hl=en&platform=ios

Upvotes: 0

Related Questions