Reputation: 109
We have used a various methods to upload dSYMS to firebase (script, manual, etc.) for our iOS app. They all get accepted and you can see the optional vs required in the dashboard:
The problem is it seems the crash status is never calculated because these dSYMs aren't received ...even though they were uploaded.
Have you ever experienced this? How does your team handle this?
Upvotes: 0
Views: 431
Reputation: 3845
Check that Xcode is generating dSYMs, check this document
If bitcode was enabled and the app released to the App Store or if you are using TestFlight, you will need to download the dSYMs from the App Store and then upload them. Check this reference.
Also, make sure you are using the latest SDK version. I had an issue where the dSYM file I was uploading had the same UUID that was shown in the dashboard but still it wasn't processed, updating the version solved it.
Upvotes: 0