2020-06-04 解决firebase 缺失dSYM

iOS firebase Xcode版本11.5  在Firebase Crashlytics控制台发现缺失dSYM文件 按照文档搞了半天都没成功 https://firebase.google.com/docs/crashlytics/get-deobfuscated-reports?platform=ios&authuser=0 这是文档提出的解决方案 都试了然并卵

正文:

1.打开xcode->window->organizer->选择你的版本包archives->show in finder->显示包内容->复制dSYMs文件夹到桌面,并压缩成.zip

2.打开终端,然后使用以下命令行 注意:把[项目 路径]和[Google Service Plist 路径]替换为正确的路径:

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

上传成功会提示 Successfully uploaded Crashlytics symbols 

然后等个2到3分钟 在firebase 刷新 就可以看到缺失的bug日志了 (2020年3月多少号之前 控制台是可以直接上传dsym的)

你可能感兴趣的:(2020-06-04 解决firebase 缺失dSYM)