简体   繁体   中英

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM