I\'m trying to integrate Firebase Crashlytics into iOS my app, which has Firebase Crash Reporting enabled. I\'ve followed the documentation here, but my build a
I followed the https://fabric.io/kits/ios/crashlytics/install documentation and added the Run Script and updated Info.plist but still got the above issue.
Apparently, I had accidentally added twice 'New Run Script Phase'. After removing the unnecessary 'Run Script's the project compiled successfully.
Xcode 10.1 Fabric 1.7.5 Crashlytics 3.10.4
If you follow closely the Getting Started documentation, you might be in for some frustrations. Trust me. I had my share of that.
Now here's what I can share with you.
If you previously had Fabric RunScript for that Target, then it's best if you delete that and create a new one, apply the GettingStarted instruction, and replace the $(INFOPLIST_PATH)
with GoogleService-Info.plist
.
There should be no Fabric configuration on your Info.plist
file anymore. It's this thing: <key>Fabric</key><dict>...</dict>
. If you still have that, time to say goodbye and let go of those feelings or face this issue.
[Fabric] failed to download settings Error Domain=FABNetworkError Code=-5... blah blah blah
, then go clean that Build Folder first (shift + cmd + k
).If your next build works, try force crashing your app and check out the crash logs on Firebase.
Here's my stack: Xcode 10.2.1 | Fabric 1.9 | Crashlytics 3.12
If you're using Crashlytics, you might have to go into your Build Phases -> Crashlytics configuration
and add it into the shell/bin/sh section like this: `set -e
if [[ ${PODS_ROOT} ]]; then echo "info: Exec Fabric Run from Pods" "${PODS_ROOT}/Fabric/run" YOUR KEY HERE else echo "info: Exec Fabric Run from framework" "${PROJECT_DIR}/Fabric.framework/run" YOUR KEY HERE fi`
The issue for me was I was using the old Fabric before and I had to remove the key from my info.plist
Finally figured it out, posting for anyone that might be baffled by the same problem.
If you've tried to install fabric via the OSX Fabric.app, or you were using Fabric Crashlytics in the past, then it will have added your Fabric API key to your Info.plist
, which the Fabric initialization build script is trying to read (I guess).
After deleting the Fabric keys form the Info.plist
the script works, without the need of any keys/params.
The Firebase docs should include a snippet warning on this.
Documentation
if crashlytics is already set up in your project (in case of migration),
"${PODS_ROOT}/Fabric/run"
, instead of "${PODS_ROOT}/Fabric/run" key1 key2
in the Run script under build phase)if crashlytics is not setup in your project already(starting a fresh integration with firebase crashlytics), simply follow the documentation.