We wanted to try out the new analytics capabilities provided by firebase, and followed all the steps in the getting started guide.
We \'ve run the app, logged a lot
An Android device sends Firebase Analytics data every X hours but you can use the following ADB command to immediately upload analytics data when registering an event:
adb shell setprop debug.firebase.analytics.app your.package.name
To check if data is being sent, you can check the logs:
adb shell setprop log.tag.FA VERBOSE
adb shell setprop log.tag.FA-SVC VERBOSE
adb logcat -v time -s FA FA-SVC
Once uploaded, the data is processed on Firebase servers, and this can take up to 24 hours until you can see the data in the Firebase console.