We have Google analytics set-up for iOS and Android (also we run it on our web) and it is recording screen views and user counts correctly but not the session count.
iOS
- Users: 39,165
- Sessions: 4,123,544
- Screen Views: 5,969,818
Android
- Users: 5,853
- Sessions: 669,675
- Screen Views: 901,164
Our implementation of Google Analytics seems to be pretty much out of the box.
GAI.SharedInstance.DefaultTracker.Set (GAIConstants.ScreenName, pageName);
GAI.SharedInstance.DefaultTracker.Send (GAIDictionaryBuilder.CreateAppView ().Build ());
With the settings:
GAI.SharedInstance.DispatchInterval = 20;
GAI.SharedInstance.TrackUncaughtExceptions = false; //We use another 3rd party
On iOS we are using the latest version of google analytics and on Android we are using the latest version for ICS.
Any ideas would be greatly appreciated.