easytracker

Google analytics custom screen names in Easy Tracker

∥☆過路亽.° 提交于 2019-12-21 04:25:25
问题 I have an application with a reused activity (its used for different purposes so just tracking the activity name would not help me, thats why I want to define the screen name manually while still using the EasyTracker. My code looks like this: EasyTracker t = EasyTracker.getInstance(this); t.set(Fields.SCREEN_NAME, screenName); // MapBuilder map = MapBuilder.createAppView(); // map.set(Fields.SCREEN_NAME, screenName); // t.send(map.build()); t.activityStart(this); I got these information from

What's the difference between EasyTracker and the regular Tracker?

こ雲淡風輕ζ 提交于 2019-12-10 12:43:29
问题 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

Google analytics custom screen names in Easy Tracker

为君一笑 提交于 2019-12-03 14:59:04
I have an application with a reused activity (its used for different purposes so just tracking the activity name would not help me, thats why I want to define the screen name manually while still using the EasyTracker. My code looks like this: EasyTracker t = EasyTracker.getInstance(this); t.set(Fields.SCREEN_NAME, screenName); // MapBuilder map = MapBuilder.createAppView(); // map.set(Fields.SCREEN_NAME, screenName); // t.send(map.build()); t.activityStart(this); I got these information from https://developers.google.com/analytics/devguides/collection/android/v3/screens I dont want to do this