I integrated the Google Analytics Tracker.
I used the following code to send a track for the welcome screen:
Tracker tracker = ((AnalyticsSampleApp) this.getApplication()).getTracker(
AnalyticsSampleApp.TrackerName.APP_TRACKER);
// Enable Advertising Features.
tracker.enableAdvertisingIdCollection(true);
// Set screen name.
tracker.setScreenName("Welcome Page.");
// Send a screen view.
tracker.send(new HitBuilders.AppViewBuilder().build());
How can I know if tracking is working.
Note: I don't have an access to the google analytics account.
Should it send messages to log cat? can see any related messages!