How to enable Firebase Crash Reporting - Android

后端 未结 6 1664
遥遥无期
遥遥无期 2020-12-11 01:27

I followed all the steps on the docs to use Firebase Crash Reporting in my Android app (I use Android Studio and everything is up-to-date).

I used their own code to t

6条回答
  •  失恋的感觉
    2020-12-11 01:51

    Please note the following:

    • After adding the SDK you can try using:

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

    • Errors take up to 20 minutes to show up in the Crash Reporting console. Check back to see your report there.

    • (It may seem obvious but) make sure you have:INTERNET and ACCESS_NETWORK_STATE permission.

提交回复
热议问题