I am trying to integrate Google Analytics on my Activities. As per the google docs I read up on EasyTracker and added EasyTracker.jar to my libs and referenced the same, extended my Activities from "TrackedActivity" / "TrackedListActivity" Also made an entry in the strings.xml file located under values <string name="ga_api_key">UA-xxxxxxxx-x</string> But whenever I log into Google Analytics I don't see any tracking displayed there.

Where have I gone wrong?

link|improve this question

75% accept rate
1  
Can you paste the code you are using to track the pages? – oriolpons Jan 31 at 13:10
feedback

3 Answers

up vote 1 down vote accepted

Google Analytic 1st time appear on website after about 24-48 hours. So if you are waiting for analytic after implementation then just wait for 48 hours.

link|improve this answer
It worked thanks Arsian :) But I am not able to see which page of the application is being visited on the Google Analytics WebSite. It always shows zero. ? – nimish Feb 1 at 6:36
Please ask this in chat room. Thanks – Arslan Feb 1 at 8:32
which chat room ? – nimish Feb 1 at 10:42
Dont have 20 reputation as of now Arsian :) – nimish Feb 1 at 18:34
show 3 more comments
feedback

Add another string:

<bool name="ga_debug">true</bool>

And then check logcat to see any information from the Analytics library.

link|improve this answer
feedback

did you give the following uses permission.

<uses-permission android:name="android.permission.INTERNET" />

GoogleAnalyticsTracker tracker = GoogleAnalyticsTracker.getInstance();
        tracker.start("your analytics code", this.con);

        tracker.setCustomVar(1, "Medium", "Mobile App");

        tracker.trackPageView("ur activity name");
        tracker.dispatch();
        tracker.stop();
link|improve this answer
SathishBabu S, According to Google if i have multiple activities i should use their Easy Tracker Library, which is supposed to handle everything – nimish Feb 1 at 6:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.