This is a documentation issue, but I will follow template:
If I understand correctly, with bitcode enabled as you distribute an iOS app, the App Store will recompile the app, generating fresh dSYMs that no longer correspond to any dSYMs uploaded to Crashlytics during the normal build process.
That means Crashlytics will never have the correct dSYMs to decode crashes from production apps, until you download the new dSYMs from the App Store and upload the new ones to Crashlytics
The docs do not mention this.
My recommendation is to cross-link the crashlytics install docs with the help docs about missing dSYMs (which are effective in decoding the crash reports, for me), and secondarily to recommend Fastlane for it's ability to automatically fetch the dSYMs and upload them.
Reference stackoverflow answer (from me, corrections here or there happily accepted): https://stackoverflow.com/questions/54577202/how-to-run-upload-symbols-to-upload-dsyms-as-a-part-of-xcode-build-process/55796619#55796619
I found a few problems with this issue:
Hi Mike,
Thanks for sharing the issue. I have opened an issue with the docs team to include the correct steps for developers to get crashes when bitcode is enabled on their app.
Tracked internally at b/131423358
Hi,
Since iOS13 was released, we're getting a lot of crashes in our app with missing dSYM files in Crashlytics. After downloading and inspecting the zip file with all the dSYM files from iTunes, we discovered that none of the Firebase related pods/.frameworks is present in the dSYM files/UUIDs.
We're using Cocoapods and these are the Firebase-related contents of the Podfile.lock:
Any idea is the above-mentioned could be related to this issue?
Thanks in advance,
Leandro
Hello,
Since some days the firebase console display an alert message that saying it will be not possible to update manually the dSYMs after march. This is really a bad news when we have Bitcode enabled... Why did you remove this option ?
It will need us to download dSYMs manually and use local script, or add a cron in a CI to download and upload it from the script..
@jasonhu-g, any update on this ticket (Tracked internally at b/131423358) ?
I think you misunderstand @floriangbh, assuming I understand it correctly - I don't believe you will be able to upload them via the website. The instructions seem to tell you to use the script, which is I believe the same script that fastlane uses, which is what my stackoverflow answer and advice above should be using
Yes by "update manually" I meant via the Firebase console website :)
I'm now using the fastlane with the download_dsyms action, but in my opinion this is sometimes (if you are on another computer without Fastlane) more simple to let the possibility to do it from the web.
But I guess Firebase have a good reason to remove the manual upload from their website.
Closing out old issues / personal git cleaning...
Most helpful comment
Yes by "update manually" I meant via the Firebase console website :)
I'm now using the fastlane with the
download_dsymsaction, but in my opinion this is sometimes (if you are on another computer without Fastlane) more simple to let the possibility to do it from the web.But I guess Firebase have a good reason to remove the manual upload from their website.