As you can see on the console output below, it usually takes 7-10 seconds to process a service and often fails to do so. This happens every time it starts.
Why is it taking so long? Is it because the service tries to connect several times before giving up? Also, what is actually the logic of this output?
Note. I do not have FirebaseAnalytics code in my application.
09-26 23:34:48.998 /package V/FA: Processing queued up service tasks: 1
09-26 23:34:54.009 /package V/FA: Inactivity, disconnecting from AppMeasurementService
09-26 23:34:57.357 /package V/FA: Activity paused, time: 89152495
09-26 23:34:57.383 /package V/FA: onActivityCreated
build.gradle (application)
compile 'com.google.firebase:firebase-core:9.4.0'
compile 'com.google.firebase:firebase-database:9.4.0'
compile 'com.google.firebase:firebase-invites:9.4.0'
compile 'com.firebase:geofire-android:2.0.0'
compile 'com.firebaseui:firebase-ui:0.5.1'
source
share