Narritt
Narritt

Reputation: 67

Can't find .dSYM for UUID from Firebase Crashlitycs

Have a crash, tried to find it in Crashlitycs, see UUID in "Missing dSYMs". Tried to do all the things from Firebase guide, but this command

mdfind -name .dSYM | while read -r line; do dwarfdump -u "$line"; done

don't show me UUID that I need. Tried to get dSYM file from the archives from XCode, it's not the same as in Crashlitycs. I already checked the GoogleService-Info.plist for GOOGLE_APP_ID. Where I can find the file that I need?

It looks simular to this question, but there is no answer. Help me, please.

Screenshot from Firebase console.

Upvotes: 3

Views: 2013

Answers (1)

Kevin Kokomani
Kevin Kokomani

Reputation: 1616

Are you able to find these dSYMs if you go to the App Store under the app in question? Sometimes this is required, especially if you have bitcode enabled. You can try the dwarfdump -u /path/to/dSYM command on any dSYMs you want to upload to verify that the UUID matches one missing from your dashboard as well.

Upvotes: 2

Related Questions