Вопрос

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?

Это было полезно?

Решение

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"

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top