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

前端 未结 7 1799
萌比男神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:55

    Firebase Analytics Event Update time on Firebase Console.

    When an event is logged, It might take up to an hour for the event to be uploaded to Firebase Analytics server and to reflect on Firebase console.

    You can enable debug logging to verify the events are logged and uploaded using the Android studio's terminal

    - Make sure you are not connected to more than one device/emulator

    adb shell setprop log.tag.FA VERBOSE
    adb shell setprop log.tag.FA-SVC VERBOSE
    adb logcat -v time -s FA FA-SVC
    

提交回复
热议问题