Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

enableAutoActivityTracking not automatically tracking activities?

I'm currently initializing my Google Analytics tracker as follows:

GoogleAnalytics analytics = GoogleAnalytics.getInstance(context);
Tracker mGATracker = analytics.newTracker(context.getString(R.string.ga_code));
mGATracker.setSessionTimeout(300);
mGATracker.enableAutoActivityTracking(true);

It works fine for sending custom events and such, though I'm not seeing any auto activity tracking (looking under Behavior -> Events -> Screens in GA). Am I not able to enable this setting in this way?

like image 329
loeschg Avatar asked Apr 22 '14 21:04

loeschg


1 Answers

Can you also make sure you call enableAutoActivityReports on GoogleAnalytics class? I know that the calls are duplicated but unfortunately, we have not been able to fix this yet. In one of the upcoming versions, we'll remove the need to call this method in two places.

If this answer doesn't work, Can you also make sure that there is some screen name associated with the screens you are using.

If none of the above work, please edit the question and add logs with tag starting with "GAV"

like image 169
Avi Avatar answered Oct 19 '22 19:10

Avi