Upload symbol files

后端 未结 3 466
挽巷
挽巷 2020-12-14 22:27

In my Firebase Crash Reporting page i can\'t find the full information of crashes (for example the number of row, the file and so on) . I thought it can be because it says <

3条回答
  •  太阳男子
    2020-12-14 23:07

    In my case (WITHOUT COCOAPODS):

    1) Import All files from directory "Crash"



    2) Add script into "Build Phases" Tab like this :

    # Replace this with the GOOGLE_APP_ID from your GoogleService-Info.plist file
    GOOGLE_APP_ID=1:xxxxxxxxxxxx:ios:xxxxxxxxxxxx
    
    # Replace the /Path/To/ServiceAccount.json with the path to the key you just downloaded
    "${SRCROOT}"/upload-sym "${SRCROOT}/*NameOfTargetDirectory*/ServiceAccount.json"
    



    You need to change "NameOfTargetDirectory" in the script and it works!

提交回复
热议问题