Does Google Analytics use app tracking (Android) even when the user is not connected to the internet?

I have an app integrated with Google Analytics. I want to know if it can track users even if they are offline or only online. If it can't track offline usage, is there a way to track application usage, like storing it in xml, for example, once the user is connected to the internet, it needs to be sent to Google Analytics. Thank,

+3


source to share


2 answers


Yes, and it sends data to google server when you are online. In fact, Google Analytics data is not sent every time there is an event. He collects and dispatches hits in bulk on a regular basis. By default, it is installed every 30 minutes.

  <!-- The dispatching period in seconds when Google Play services is
        unavailable. The default period is 1800 seconds or 30 minutes -->
    <integer name="ga_dispatchPeriod">1800</integer>

      



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

+8


source


It will save some events on some extensions.

It will send details to Google when your device is connected.

This way you can use Google Analytics for offline event memory.



See link for details

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

Google already mentions.

+1


source







All Articles