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

Time:10-21

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?

CodePudding user response:

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

CodePudding user response:

Check this article to generate/find dSyms file:

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

  • Related