dsym
Crashlytics: “We’re missing a dSYM to process crashes” [closed]
I ran into the same problem today. It seems that iTunes Connect is recompiling apps with bitcode so that the UUID changes, and the dSYM inside the .xcarchive can’t actually be used to symbolicate the app (this appears to be a new development). You can download the correct dSYM from iTunes Connect. Login, go to … Read more
How is a .dSYM file created?
A dSYM file is a “debug symbols file”. It is generated when the “Strip Debug Symbols” setting is enabled in the build settings of your project. When this setting is enabled, symbol names of your objects are removed from the resulting compiled binary (one of the many countermeasures to try and prevent would be hackers/crackers … Read more
Can’t download dSYM file from iTunes connect
Do you still have the archive available in Xcode as you can save them out from there: Select Window -> Organizer This will open up Organizer window containing your archives. Right click on Archive and select ‘Show in Finder’. Right click archive in finder and select ‘Show Package Contents’. Project.xcarchive contains dSYMs, Info.plist and Products. … Read more
Xcode – There are no dSYMs available for download
NON-BITCODE Here’s a GIF on how to get DSYMS, compress and upload to crashlytics/fabric Press Window > Organizer Right-click on your app> Show in Finder Right-click on first .xcarchive file > Show package contents BITCODE ENABLED You’ll need to download dsyms from App Store Connect. The easiest would be to use fastlane lane :refresh_dsyms do … Read more