New Firebase Crashlytics SDK missing dSYM UUID
Asked Answered
C

2

10

I am trying to upgrade Fabric Crashlytics SDK to New Firebase Crashlytics SDK. I've followed New Firebase Crashlytics instructions.

The problem is that given Firebase Crashlytics dsym file's UUID does not match with archive dsym files UUIDs. I've downloaded dsyms from Appstore connect(Activity) and it doesn't match too.

After that I decided to upload dsyms with Fastlane. So many dsyms are uploaded but Firebase Crashlytics console still says me to upload missing dsym files.

I tried to upload with Firebase CLI and Fastlane.

I'm busy with that problem since tree days. Somebody can help me ?

Chiastic answered 24/3, 2020 at 8:16 Comment(2)
Same issue here.Phlyctena
Same, apparently they know it on their side, but no solution so far: github.com/firebase/firebase-ios-sdk/issues/…Extended
H
1

I had the same problem, the fix was uploading the downloaded DSYMs from Appstore connect using Terminal

Open your terminal then use the following line (make sure to replace [xxx Path] with the right paths:

[Project Path]/Pods/FirebaseCrashlytics/upload-symbols -gsp [Google Service Plist Path]/GoogleService-Info.plist -p ios [DSYMs file Path]/appDsyms.zip

Example

/Users/soufian/Desktop/Projects/yourProject/Pods/FirebaseCrashlytics/upload-symbols -gsp /Users/soufian/Desktop/Projects/yourProject/yourProjectSubFolder/GoogleService-Info.plist -p ios /Users/soufian/Downloads/appDsyms.zip

Make sure there is a space after -gsp, in Firebase documentation there isn't.

Helbona answered 25/3, 2020 at 10:4 Comment(4)
Thanks for reply Soufian, but it doesn't work for me. I'd tried this before. Now I tried again but I uploaded symbols everyting seems great but Firebase Crashlytics still ask me to symbols in Firebase Crashlytics console.Chiastic
what is the size of your dSYM ? and do you get any error ( under browser developer console) ?Phaedra
The problem is that the required UUID doesn’t match with the local ones, you can check like: mdfind "com_apple_xcode_dsym_uuids == <missing ID>"Extended
Sometimes appstoreconnect attributes incorrect UUIDs for bitcode enabled archives. Here is a solution for that problem: https://mcmap.net/q/826050/-missing-uuid-dsym-within-the-appstore-downloaded-dsyms-more-targets-appKristoferkristoffer
P
0

Please reach out at '[email protected]' and include your dsym (zip), app bundle id and I can dig into this with you.

Phaedra answered 26/3, 2020 at 22:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.