I\'ve read the documentation on the GoogleAnalytics v2 website (I\'ve basically read all the pages from https://developers.google.com/analytics/devguides/) but was not able to f
In GoogleAnalytics v2 they have new ways to start/stop the session.
I have not seen your code of mTracker.setStartSession(true)
and mTracker.setStartSession(false)
used before.
Now, if you don't want to use the EasyTracker methods you can start a new session by the following:
mTracker.startNewSession("UA-xxxxxxx-x", 20, this);
With the first input being
(String uniqueGoogleAnalyticsKey, int autoDispatchTimer, Context this)
To stop it:
tracker.stopSession();