The Google documentation for Google Analytics version 3 is very confusing regarding the differences between EasyTracker
and the regular Tracker
class, and I'm really not sure which one I should be using. On this page, they talk about setting up the EasyTracker
, using the analytics.xml file to set up your ID, but then on the next page they talk about setting up a regular tracker and passing it your ID:
// Initialize a tracker using a Google Analytics property ID.
GoogleAnalytics.getInstance(this).getTracker("UA-XXXX-Y")
What are the differences between these two trackers? Does one have more features than the other? I gather that the EasyTracker
is simpler to set up if you just want Activity tracking, but if I want to use all of the features available to me in Google Analytics, can I still do all that with the EasyTracker
, or do I need to switch to the regular Tracker
?