iOS - Firebase崩溃报告问题

时间:2017-05-22 05:29:32

标签: ios swift firebase firebase-crash-reporting

我逐行完成了这个文档。 https://firebase.google.com/docs/crash/ios

我的崩溃报告成功。

但是当我将代码上传到git时,其他用户会因为上传sym而抱怨崩溃。

因为doc说要添加以下内容来运行脚本:

# Replace this with the GOOGLE_APP_ID from your GoogleService-Info.plist file
GOOGLE_APP_ID=1:my:app:id

# Replace the /Path/To/ServiceAccount.json with the path to the key you just downloaded
"${PODS_ROOT}"/FirebaseCrash/upload-sym "/Path/To/ServiceAccount.json"

我猜错误是由于我的私钥“ServiceAccount.json”的路径

因为我有自己的私钥路径,但是另一个人将获得私钥的路径,这是不可能的。

那么,任何人都可以告诉我应该在哪里放置该私钥来为此错误辩解。

1 个答案:

答案 0 :(得分:2)

Place your serviceAccount.json on the same directory as of your xcode project or workspace将您的ServiceAccount.json放置到项目的根目录

然后将路径设为

"${PODS_ROOT}"/FirebaseCrash/upload-sym "$SRCROOT/ServiceAccount.json"

这适用于所有用户。 虽然不建议将您的ServiceAccount.json共享给团队成员以外的其他用户。