Firebase tells me to upload missing dSYMs
files:
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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…