Reputation: 545
I have two iOS apps, 1 - migrated from Fabric to Firebase. 2- On boarded in Firebase; Both apps show missing required dSYM message on the Firebase dashboard. I have tried uploading the dSYM and in most cases, it takes longer than 12 hours to process and get the crashes on the Firebase dashboard.
I am using Fabric legacy SDK and downloading the dSYM for Apple. Is there any outages or glitches with Firebase Crashlytics that I am not aware of ?
Upvotes: 0
Views: 306
Reputation: 545
According to Firebase Support;
Currently, it is taking (around) 24 hr to process the dSYMs (specially, if dSYM size is large).
Most Impacted Developers:
It is suspected that the dsym downloaded from Apple has the incorrect bundle id. Apple is setting com.apple.xcode.dsym. (e.g. com.apple.xcode.dsym.Bingo Blast).
Temporary Solution;
See an example shell script that developers could use replacing the and with the appropriate values.
export BUNDLE_ID='' export DSYM_PATH='' sed -i '' -e "s/>com.apple.xcode.dsym.*\$BUNDLE_ID\
Upvotes: 1