Mohamed Farid
Mohamed Farid

Reputation: 83

Crashes not showing in Firebase console after linking from Fabric to Firebase

I am trying to link my app to firebase so I followed all the steps in this link correctly https://docs.fabric.io/apple/examples/cannonball/index.html and when I force a crash It doesn't show in Firebase console but when I add back Fabric.with([Crashlytics.self]) it works fine and the crash appears in both fabric and firebase.

I tried also removing api key from info.plist and change run script to "${PODS_ROOT}/Fabric/run" still crashes don't appear in firebase nor fabric

Upvotes: 2

Views: 768

Answers (1)

Anton Petrov
Anton Petrov

Reputation: 973

At the moment of writing, iOS applications migrating from Fabric to the Firebase should follow Fabric integration documentation (not the Firebase Crashlytics documentation).

  • Do not remove Fabric keys from Info.plist
  • Do not remove [Fabric with:] call
  • Do run "${PODS_ROOT}/Fabric/run" script with arguments (providing old Fabric API Key)

Upvotes: 1

Related Questions