Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics Android not working

I'm using Google Analytics to track the PageViews and Events of my App.

tracker = GoogleAnalyticsTracker.getInstance();
tracker.setDebug(true);
tracker.startNewSession(getString(R.string.ga_auth), 10, this);
tracker.trackPageView("/test");

I'm getting the

01-14 12:17:53.697: V/GoogleAnalyticsTracker(24795): HTTP Response Code: 200

but in my Analytics Page is nothing - waiting for 3 days now....

Has anyone been facing the same problem?

Best regards

Edit: Just tested v2 Beta of Google Analytics and its working fine... But still interested in how to solve the problem.

like image 656
Lukas Olsen Avatar asked Nov 24 '22 07:11

Lukas Olsen


1 Answers

Take a look on this interesting post :
Google Analytics – Common Problems and Fixes

like image 66
EvZ Avatar answered Dec 04 '22 14:12

EvZ