iOS (Fabric): Crashlytics crashing app on launch

后端 未结 4 451
日久生厌
日久生厌 2021-01-15 04:02

I have updated the Crashlytics but still I am getting this error on launch:

Error: *** Terminating app due to uncaught exception \'FABException\', r

4条回答
  •  终归单人心
    2021-01-15 04:52

    I was having a crash on the same line, and it was because I called it BEFORE FirebaseApp.configure().

    For anyone having the same issue, make sure you call them in this order:

    FirebaseApp.configure()
    Fabric.with([Crashlytics.self])
    

提交回复
热议问题