我在 FireBase 上阅读崩溃报告时遇到问题,我的报告如下所示:
我已经关注了these instructions符号化堆栈跟踪,得到相同的结果。
- 我正在使用 Xcode 8
- 我的应用是用 Swift 3 制作的
- 我已经写了“FIRApp.configure()”
appDelegate.didFinishLaunchingWithOptions 方法,确实让它崩溃了,卸载调试器,修复错误,重新运行应用程序,收到消息“崩溃成功上传”等...
- 我正在使用 pod(pod 'Firebase' 和 pod 'Firebase/Crash')
- 我在 FireBase 控制台中看到我的事件和崩溃(只是
不可读)
- 在构建时自动安装符号化脚本(见图):
已下载 FireBase 提供的示例(崩溃示例不包括自动符号化的脚本)
已经按照这个解决方案(没用):
还有很多其他的。
已经访问过最近 6 个月的 stackoverflow 和 google 组上的链接。
没有任何效果,请帮助!!!
更新#1:我收到了一封来自 [email protected] 的电子邮件:
reset your OAuth credentials
没用,我也一直在测试脚本,上传是正确的,我开始认为是 Firebase 错误
Best Answer-推荐答案 strong>
您的上传脚本似乎没有设置 GOOGLE_APP_ID var。它应该类似于:
# 用 GoogleService-Info.plist 文件中的 GOOGLE_APP_ID 替换它
1:xxxxxxxxx:ios:xxxxxxxxxxx=1:my:app:id
# 将/Path/To/ServiceAccount.json 替换为刚刚下载的 key 的路径
"${PODS_ROOT}"/FirebaseCrash/upload-sym "firebasecrash/firebasecrashreport.json "
这里 firebasecrashreport.json 是 ServiceAccount JSON 文件的名称,而 firebasecrash 是我的项目的名称。
关于ios - Firebase 崩溃无法读取,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40160230/
|