Set up Crashlytics: Android
Let’s see how we can enable live crash reporting on firebase. It’s very straightforward and can be done in a few minutes. First of all, you have to integrate firebase. It can be seen here:
For this, we have to enable Crashlytics for our app.
As you are done with the firebase setup, let’s see how we can enable Crashlytics for our app. Go to Crashlytics
under the Quality section (left-hand nav panel) and click on that.
After clicking on crashlytics, you will see the above screen. Now click on Enable Crashlytics
. You will be moved to here.
Now got to your project-level build.gradle
and add this (version can be changed here I am using 2.4.1
)
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1'
In your app-level build.gradle
add this
// Apply the Crashlytics Gradle plugin
apply plugin…