Search code examples
iosswiftfirebasecrashlyticsfirebase-crash-reporting

How to report a non-fatal exception with Firebase crash on iOS?


How to report on iOS a non-fatal exception using Firebase Crash Reporting? In Android, we can do something like this:

 FirebaseCrash.report(new Exception("My first Firebase non-fatal error on Android"));

Solution

  • According to the documentation, you can only report fatal errors on iOS at this time.