I install Firebase Crash Reporting in my iOS app. I imported the necessary json files and installed the shell script. However, when I press the start button on the simulator, I get 11 errors that all say the same. Here are two of them:
warning: dump_syms: /var/folders/5l/20by_c_57fb7jhv3jh72jw9m0000gn/T/com.google.FirebaseCrashReporter.TAlixfZc/**App Name**.dSYM/Contents/Resources/DWARF/**App Name**: in compilation unit '/Users/mikelehen/firebase/firebase-client-objc/Firebase/Firebase/Utilities/FUtilities.m' (offset 0x28a2e): ` warning: dump_syms: /var/folders/5l/20by_c_57fb7jhv3jh72jw9m0000gn/T/com.google.FirebaseCrashReporter.TAlixfZc`
When I try to run it on my iPhone, I get only four problems.
Also, my name is not mikelehen, which for some reason is in one of the problems.
After following the instructions on the Firebase website to simulate a crash, I never get a log of a downloadable crash.
Any idea what I'm doing wrong here?
Edit: Here is the script that is in my build phases:
JSON_FILE="../**App Name**/ServiceAccount.json" GOOGLE_APP_ID=1:**App ID** defaults write com.google.SymbolUpload version -integer 1 JSON=$(cat "${JSON_FILE}") /usr/bin/plutil -replace "app_${GOOGLE_APP_ID//:/_}" -json "${JSON}" "$HOME/Library/Preferences/com.google.SymbolUpload.plist" "${PODS_ROOT}"/FirebaseCrash/upload-sym
ios firebase firebase-crash-reporting
Philip sawyer
source share