Reputation: 6359
I want to use Firebase Crashlytics as it's well integrated with the rest of Firebase suite but I also want to use Fabric, partly because they have an iOS app that allows me to track some bugs amongst other things.
For Fabric, you need to create an entry in your Info.plist with your Fabric API key and you have to use a script where you give some API keys as parameters.
For Firebase Crashlytics, you just need "${PODS_ROOT}/Fabric/run"
.
So when you tried to run both scripts "${PODS_ROOT}/Fabric/run"
and "${PODS_ROOT}/Fabric/run" key key
, because of your entry in your Info.plist file, you get an error saying it's expecting some keys when running your Firebase Crashlytics script.
Is there a way to use both services at the same time?
Upvotes: 2
Views: 1382
Reputation: 2262
Thanks. Because of the way our APIs are integrated, you can only use one of Firebase Crashlytics and Fabric Crashlytics. They are the same on the backend, but have slightly different frontend features at this time. We recommend you go with Firebase Crashlytics as it is where we are investing all future feature work.
Upvotes: 4