Unreadble errors with Firebase Crash Reporting on ios (Symbol files)

家住魔仙堡 提交于 2019-12-05 02:06:00

Did you find the answer for your question?

Your script seems to be a little different than the one recommended at the Firebase doc today (Sep 18 2016).

Have you tried this one?

# 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"

Facing the same issue, this is what I got from firebase-support@google.com:

Thanks for waiting. Can you go over the following items and see it will work:

reset your OAuth credentials, run below command:

rm $HOME/Library/Preferences/com.google.SymbolUpload*

create new service account and make sure it has editor permission Revise your script into below format:

# 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"

Please make sure your app id and json file path are correct. I hope this helps. Let me know if you have other concern.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!