Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
415 views
in Technique[技术] by (71.8m points)

ios - Firebase Crashlytics upload missing dSYMs files for UUID

Firebase tells me to upload missing dSYMs files:

enter image description here

I've tried doing that by getting the different files for different versions, copying them to my desktop, same with GoogleService-Info.plist-file and calling:

FirebaseCrashlytics/upload-symbols -gsp /Users/chris/Desktop/GoogleService-Info.plist -p ios /Users/chris/Desktop/dSYMs

My terminal said that it was successful each time but Firebase keeps telling me that files are missing. What dSYMs file do I have to upload then and how do I get them??? What am I missing here?

Update:

I found this command to find all my 'dSMSs'-files:

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

but the ones that I need for Firebase ("48DF4319..." & "DE078F..") are not there. So what can I do now? Can I somehow recreate them?

question from:https://stackoverflow.com/questions/65648216/firebase-crashlytics-upload-missing-dsyms-files-for-uuid

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I got it working... As I said the two missing files were not on my laptop. The solution was:

App Store Connect -> Test-Flight -> choose desired build -> Meta Data -> Download dSYMs

I must add that I somehow couldn't download the files by clicking download ... I had to right-click and choose open link in new tab. Might just be some Chrome-Bug...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...