How much time does it take for firebase analytics first report?

前端 未结 7 1825
萌比男神i
萌比男神i 2020-11-29 06:59

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

7条回答
  •  生来不讨喜
    2020-11-29 07:35

    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.

提交回复
热议问题