Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics Easy Tracker Issues

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?

like image 854
Nathan Avatar asked Feb 21 '23 16:02

Nathan


1 Answers

Add another string:

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

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

like image 143
user1188459 Avatar answered Mar 04 '23 04:03

user1188459