Performance

Firebase performance can monitor app's performance like how fast the page loaded to the screen, and how fast the API response. Without any configuration, using gradle plugin all that data can be recorded and maintained.

Disable this feature by defining this:

build.gradle
android {
    ...

    buildTypes {
        debug {
            ...
            FirebasePerformance {
                instrumentationEnabled false
            }
        }
    }
}