google analytics doesn't show the active user in Real time overview

后端 未结 2 611
再見小時候
再見小時候 2020-12-31 05:08

i have setup every thing in my app for using google analytics V4 and i get every things working and i can see it but when i go to real time overview in my mobi

2条回答
  •  执念已碎
    2020-12-31 05:58

    For me it turns out Google Analytics only dispatch the data every 30 minutes by default. So changing the dispatch time for testing show the realtime data with some delay.

    GoogleAnalytics.getInstance(this).setLocalDispatchPeriod(15);
    

    Reference: https://developers.google.com/analytics/devguides/collection/android/v4/dispatch

提交回复
热议问题