Crashlytics

Firebase Crashlytics will report any crashes that occur in the app with some useful information like device's operating system and system logs. Crashlytics dashboard can be viewed in Firebase Console.

DevBase automatically will report any crashes to Firebase and detect automatically if you're enabling obfuscation to upload mapping file system to display deobfuscated code in the console. To disable Crashlytics (for faster build), add this:

build.gradle
android {
    ...

    buildTypes {
        debug {
            minifyEnabled false
            shrinkResources false
            debuggable true
            ext.enableCrashlytics = false
            ...
        }
    }
}