Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some new sign-in/up tracks #4918

Merged
merged 5 commits into from Dec 16, 2016
Merged

Conversation

hypest
Copy link
Contributor

@hypest hypest commented Dec 14, 2016

Addresses #4903

Adds tracks for:

  • Default/Main Sign in screen displayed
  • Create account initiated
  • Email already used (error) when creating a new account/user
  • Username already exists (error) when creating a new account/user
  • Failed to create a new account

@daniloercoli daniloercoli self-assigned this Dec 16, 2016
@@ -301,6 +309,10 @@ public void onErrorResponse(VolleyError error) {
} else {
showError(messageId);
}

if (mStep == Step.CREATE_USER) {
AnalyticsTracker.track(AnalyticsTracker.Stat.CREATE_ACCOUNT_FAILED);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's about tracking the network error details in properties?
Something like the following code (that I didn't test)

Map<String, Object> properties = new HashMap<>();
properties.put("network_exception_class", error != null ? error.getClass().getCanonicalName() : "null");
properties.put("network_exception_message", error != null ?  error.getMessage() : "null");
if (error.networkResponse != null) {
     NetworkResponse networkResponse = error.networkResponse;
     if (networkResponse.data != null) {
             properties.put("network_exception_data",  new String(networkResponse.data)););
      }
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @daniloercoli , good point. I actually looked into adding error info to that track prior to opening the PR but it seems that the useful error message can be deeper in the response's body. Most of onErrorResponse()'s code is about extracting the message after all. It seemed too complex for the purposes of this PR and decided to leave it out for a future PR if we see the need.

That said, let me know if you think this is a blocker and we should address it within this PR. Thanks!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@daniloercoli daniloercoli merged commit 9308dc7 into develop Dec 16, 2016
@daniloercoli daniloercoli deleted the issue/4903-new-signin-tracks branch December 16, 2016 22:51
frosty added a commit to wordpress-mobile/WordPressCom-Analytics-iOS that referenced this pull request Jan 6, 2017
aforcier added a commit that referenced this pull request Nov 28, 2017
3a16fd3bb3 Merge pull request #5 from wordpress-mobile/issue/move-to-bintray
091dddffdf Add the bintray example command to the README
3a6d1f16a8 Use gradle wrapper v4.1
f942982bcd Remove Sonatype config and use Bintray instead
af61bccad8 Merge branch 'release/8.2' into release/8.3
2fab11c3a8 Merge pull request #6625 from wordpress-mobile/feature/global-notification-setting
0e9d87116e Add a comment about waiting for the userame
7c99503e6d Wait till username is avail to alias anon user
8fe66c50fe Add a comment about waiting for the userame
6d2e4ffb77 Wait till username is avail to alias anon user
7194cea70e Add analytics to global notification preference
398ef2b51c Analytics: Adds stat to track prologue pagination.
858982dad3 Add new track for LOGIN_MAGIC_LINK_OPEN_EMAIL_CLIENT_CLICKED
4a45a4eaa2 No retry screen on android so, remove this Track
6e288e0887 Merge branch 'develop' into feature/new-login
7da82ac57e Merge branch 'develop' into feature/new-login
9498a9c265 Add analytics to editor beta label
1b87a87a79 merged release/7.7 - fixed merge conflicts
91d690ff07 Rename read more event to avoid confusion
171189ab41 Refactor events for consistency
a51fe5d24d Add new editor buttons to analytics tracker
7a24c56560 Add open beta message analytics
4c0d942eca Add analytics to editor promo dialog
f05612b38c Merge branch 'develop' into feature/new-login
8e643a28e1 Add Nosara and Crashlytics stats to video optimization
8731013ea8 Track permission results
4005215135 Update gradle to 2.3.3 for AS 2.3.3
868d3d8a34 Merge branch 'develop' into feature/new-login
7955478cb2 Upgrade support lib and build tools to latest
9029c08592 Merge branch 'feature/new-login' of github.com:wordpress-mobile/WordPress-Android into issues/login-analytic-keys
227f1b3ec7 Analytics: Removes keys.
d658b80754 Analytics: Changes from code review.
0799b50862 Merge branch 'develop' of github.com:wordpress-mobile/WordPress-Android into issues/login-analytic-keys
a9e19eebb2 Merge branch 'develop' into feature/new-login
893946b942 Remove Mixpanel
4018b93ff6 Update build files for AS 2.3.2
be8b3ce60d Merge pull request #5879 from wordpress-mobile/issue/5877-aztec-tracking
6ad3c2750d Add missing Aztec analytics descriptors
70312fde80 Rename tracking variables to better distinguish visual editor from Aztec
8664d1a8b7 Bump media picker event in Nosara/Tracks
9d7450b6fc First part of "media picker" analytics tracking
838e9d39d4 Add a feature flag for the wizard-style login flow
2c616d2ba2 Analytics: Adds new Login related keys to trackers.
c467a24c9f Merge branch 'release/7.2' into develop
a8cf040cfd Merge branch 'release/7.1' into release/7.2
b44d72f1a0 Merge pull request #5626 from wordpress-mobile/issue/check-null-analytics-events
ad3e40a126 Analytics: Adds new login event keys
8c4c093beb Update Tracks to 1.1.2
8a9564bccb moved vector drawables used in notifications quick actions to the v21 specific folder /res/drawable-anydpi-v21
f8f8168473 Check if the user is null before bumping the event into Tracks
41d9606dc9 Check null key values on Properties passed to events
951ea68982 Rename variable
5717e61efd Check if the event is valid before bumping it
7ed115563b Add method that ckecks if the event is valid (not null for now)
8a89af0fd6 Add analytics exception
3fe8311fc9 Merge pull request #5564 from wordpress-mobile/feature/tappable-my-site-header
3f1e1c3821 Updating gradle plugin to 2.3.1
7aef12044c Merge branch 'release/7.1' into develop
cb49c6ed88 Merge branch 'release/7.0' into release/7.1
d62dcfc55d Adds OPENED_VIEW_SITE_FROM_HEADER analytics event
e4e59fc09b Fix #5554: check for an eventual null username before aliasing
11501a48b4 Combine `case`s together since noth of them were doing the same thing.
36def1567e Make sure to track new picture/video, and picture/video from device library separately in analytics
aa7f6216b8 Merge pull request #5495 from wordpress-mobile/issue/add-analytics-to-media-service
1db37498fe Change event name on Mixpanel
f455c913b7 Track analytics for the Optmize Picture feature
d683a60ed6 Add new media analitycs events to Trackers
9cf25b576f Add new analytics for MediaUploadService
d8734653c6 - Introduce a new routine to retrieve the correct file path from a URI. - Bump Analytics for media added to the WP Media Library.
bb01eda3fb Analytics: Adds comment to method.
585390efa4 Login: Adds error details to events.
7e91bd1d45 Track optimize images Analytics
644fdce0c2 Merge branch 'develop' into feature/fluxc-integration
d08f127e6e Use latest utils lib to fix lint errors
8eef8a40e9 Update to gradle plugin version 2.3.0
a52f1b2603 Merge branch 'develop' into feature/fluxc-integration
73112ad027 Add Analytics
3736d76632 Merge branch 'feature/aztec-integration' into feature/fluxc-integration
366809ead2 Show different editor options depending on Aztec feature flag settings
a356bcb0ef Merge branch 'develop' into feature/aztec-integration
8b6aacc459 Merge branch 'develop' into feature/fluxc-integration
9ad459bde6 Updating buildToolsVersion and support library to the latest versions
47731a2f26 Use editor selected in App Settings
7cdaef8245 Solved conflicts, but a lot of things need to be fixed. Merge branch 'develop' into feature/fluxc-integration-merge
1bbe4a64e8 Merge pull request #4918 from wordpress-mobile/issue/4903-new-signin-tracks
2e0ff1f612 Tract account creation failure
1fc56d8689 Track email exists when creating new account
35504d48ad Track username exists when creating new account
1705815e13 Track account create initiation
38aef33d8f Track login screen shown
a993cc5d54 Updating grade plugin
689a2c2aa2 resolved merge conflicts
d94378fd95 added analytics tracking when user enable/disbale pending draft notification settings
8b550093e3 Merge branch 'develop' into feature/fluxc-integration
6dd198c75b added dismiss and ignore actions, tracking in analytics for each action, and handling of ignore and dismiss in NotificationsProcessingService
ee0ebfbee5 Upgrade to Support Lib, build tools v25.0.1
3190de0a56 merged develop and resolved merge conflicts
552b6ef0b3 added proper analytics tracking handling for Mixpanel and Nosara
8805328bc3 took snackbar action off, and now snackbar is not presented anymore once user does first use swipe
c70d6b48ff added analytics tracking
515a5f568e Merge branch 'develop' into feature/fluxc-integration
74352baae6 Merge develop into feature/fluxc-integration Major changes: * Magic links integration * WordPress.com link interception * Simperium Removal
85bade2fb9 Merge pull request #4757 from wordpress-mobile/feature/track-not-default-handler
2c56a43554 Tracking Quick Actions by using a new "is_quick_action" property instead of new event names in Nosara.
5817f23b9e Add quick actions events to Mixpanel impl, and also added missing notifications events to the Mixpanel impl.
946e236174 Add quick actions analytics events
c87f9e7784 Merge branch 'develop' into feature/track-not-default-handler
5faa35ec07 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into issue/4680-reader-related-traintracks
06868c0663 Merge pull request #4752 from wordpress-mobile/feature/additional-helpshift-events
796fa9f698 Track when not the default WPCOM post URLs handler
be12f5e5af Adds additional Analytics events for Helpshift
5da5469876 Add tracks for viewing an unauthorized post
58a8cf1aaa Add extra track points for reader actions
316f368fca Separate tracking when local/global related post clicked
5fdf8bda70 Merge branch 'develop' into feature/intercept-wpcom-post-url
6ff1fcd13b Updating build tools and compile/targetSDK to 25 along with support libraries
f0612640a9 Merge branch 'develop' into feature/intercept-wpcom-post-url
048b38aa97 Add Tracks on starting sign in from Reader
847f41f90a Add Tracks for intercepting WPCOM post URLs
32c5915a89 Track deeplinked but fellback to external browser
f017f8321b update missing build files to 2.2.2
aa1abf94cf Update to Android Gradle Plugin 2.2.1
18972239ad Merge branch 'release/6.0' into develop
2e5930008b Intercept WPCOM Reader Blog post URLs, open Reader
d441a93172 implementation that saves a note built from the PN payload to simperium so fragments don't need to know where the Note is coming from
fbd5b5562f Track blog/feed post intercept
a7eee0e1a4 Track app launch via deep-linking
dffe622751 adding ability to extract JSON from a Note to persist instance on rotation
acc651c7f2 added note not found analytics tracking
43b7cecf70 Removed READER_RELATED_POST_SITE_CLICKED
b8c9079dd9 Added READER_RELATED_POST_SITE_CLICKED
9687166832 Added `READER_RELATED_POST_CLICKED` to analytics
6ab5f2dbb5 Fix wpanalytics build with gradle 3.1
d0a445b461 Updating gradle version to 2.2 for Android Studio 2.2
5969e86885 Issue/4462 reader traintracks (#4540)
2dc7464c7f update travis config and bump build tools to 24.0.2
f0e16c8733 Update com.android.tools.build:gradle to 2.1.3
5ccbbc9210 Merge pull request #4421 from wordpress-mobile/update-dependencies
8e2fb4e903 Adding analytics for creating a new site
00459c8d48 Updating libraries to use correct/latest Utils
0bb1976cc0 Targetting version 24
39e7076726 Updating to build tools 24.0.1
a9affd086a Merge branch 'release/5.6' into release/5.7
6d5a0667eb Reader: Updates search related analytics.
06715dc721 Drop version code from analytics metadata
1149cb347d Removed hardware keyboard tracking from metadata
7f431f8e3d Track hardware keyboard usage in user metadata
402ecd5a68 Refactored analytics metadata to use an AnalyticsMetadata model object
074ab580dc Merge branch 'develop' into feature/reader-search-master
3a6820cf57 Merge branch 'develop' into issue/3924-method-count
68ba185ed3 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/reader-search-master
d58ab99999 Merge pull request #4233 from wordpress-mobile/feature/gravatar-permission-denied-analytics
e333be97ab update compileSdkVersion and buildToolsVersion in every subtrees
0bb7019bba Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/reader-search-master
6ca20ac6da update gradle wrapper to 2.14
4f88896146 Track the Gravatar permissions interrupted case
ec9ba35b67 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/reader-search-master
f24403c26a Updating gradle plugin to 2.1.2
800f97d6ab Merge pull request #4163 from wordpress-mobile/issue/4105-reader-search-analytics
23892072f3 Capitalize words in the MP event name
ba0b9ab38a Better naming using "upload" instead of "update"
df1703afd0 Track Gravatar update failure
22244cfe1d Merge branch 'hotfix/5.4.1' into release/5.5
93e559b0ca Update to latest utils version
782b2f3d38 To match the web app, renamed READER_SEARCH_RESULTS_LOADED to READER_SEARCH_LOADED and added query to properties
118fea7fff First pass at search analytics
f6d6e7746a Fixing typo for magic links
e667a3ab71 Merge branch 'release/5.4' into develop
5f11a43e62 Merge pull request #4100 from wordpress-mobile/feature/people-management-sync
12ab8f3717 Merge branch 'release/5.4' into develop
4409a3ae29 Renamed OPENED_PERSON as OPENED_PEOPLE_MANAGEMENT
b5470c9778 fix tracking of new editor disabled
ab08d9e1a9 People management event names added
8f7989f792 bump minSdkVersion from 14 to 16
63d7a03f57 remove specific code for API < 16 in analytics
113d8e5c3e Better name for the gravatar tooltip tap event
8d5944cf06 Adds tracking to the Gravatar change flow
a2fa20aa82 Merge branch 'develop' into feature/magic-link
1348402881 Merge branch 'develop' into feature/magic-link
6c0c529bf5 Merge branch 'feature/update-gradle-plugin' into feature/3988-ab-testing
9af493aff3 Updating gradle plugin to 2.1.0 for Android Studio 2.1.0
084a960037 Merge branch 'develop' into feature/3988-ab-testing
0484c2417f Adding AB testing started tracking
232e6ab96e Merge branch 'develop' into feature/magic-link
d7e5867648 Add new Analytics Event
cbd7dd2323 Adding Magic Link analytics
84457bce93 Drop me_ prefix from Nosara event names
3ae8e8f240 Fix /me analytics names to follow the action at the end convention
097cfae841 Updating to gradle 2.0
e55d56329b Updating to rc3
af53421348 Merge pull request #3769 from wordpress-mobile/feature/smart-lock-for-passwords
f048dc1bcc Merge pull request #3919 from wordpress-mobile/issue/update-build-tools
f722b54ff7 Merge branch 'release/5.2' into release/5.3
0cf6554d2c Updating the rest of the modules to buildToolsVersion 23.0.3
35bfcbc958 update to android-gradle-2.0.0-rc1
3684b616c5 upgrade to gradle plugin 2.0.0-beta7
db05f4eb78 New events LOGIN_AUTOFILL_CREDENTIALS_FILLED/UPDATED
42786954c1 Add missing event in Mixpanel analytics
554fcaabd2 Merge pull request #3853 from wordpress-mobile/feature/health-check-mvp
b8f4e0df45 update to com.android.tools.build:gradle:2.0.0-beta7
bb0027686e Merge branch 'develop' into feature/delete-site-redesigned
bf8cafb7b7 Adding purchases request
604304141e Adding Mixpanel and Nosara events
225d457f41 Renaming request to response
8ecfcdaa47 Adding full analytics for delete site
f4e3bd764c Adding tracking additions for delete site
ce31a21831 All mentions of //future removed from Analytics events
0d09c98df4 Add analytics to track when the app settings is opened
09aec5aaa7 Bump Analytics when the user inserts an invalid URL
ff22f2b6b8 Language change event renamed and will always be tracked
b19792156e Updated gradle to 2.0.0-beta6
1473fee007 Merge branch 'develop' into feature/visual-editor
6956e3f06f Upgrade gradle plugin to 2.0.0-beta5
afad5e67a4 Fix #3582: new Visual Editor events
31bcb4fdc5 Merge pull request #3742 from wordpress-mobile/issue/update-to-android-gradle-plugin-2.0
66fa0fe065 update to android gradle plugin beta4
4d4b517aa6 update to android gradle plugin 2.0.0-beta-2 - Instant Run
7ba34afaf6 Updating to latest versions of internal dependencies
6d53ab4a69 Keeping internal dependencies always pointing to the latest version
47c95ea71b Merge commit '260ce85614ffeefc057efe4eb909706a013500ae' into develop
260ce85 Bump version to 1.2.0
8c839cc s/EDITOR_UPDLOAD_MEDIA_FAILED/EDITOR_UPLOAD_MEDIA_FAILED/
f92ee857fc Merge pull request #3568 from wordpress-mobile/feature/site-settings-review
39faa5c00b Merge commit '2bc2b1ff4cb163b6795e974afc9688b9d552b8f7' into develop
2bc2b1f Bump version to 1.1.0
29d0d2c2da Merge develop into site-settings-review
d187e35ecb Add visual editor events to mixpanel and nosara trackers
03ea4ab Add visual editor events to mixpanel and nosara trackers
6b8bc057ca Add EDITOR_ADDED_VIDEO_VIA_LOCAL_LIBRARY and EDITOR_ADDED_VIDEO_VIA_WP_MEDIA_LIBRARY to Mixpanel and Nosara trackers
baa34d5 Add EDITOR_ADDED_VIDEO_VIA_LOCAL_LIBRARY and EDITOR_ADDED_VIDEO_VIA_WP_MEDIA_LIBRARY to Mixpanel and Nosara trackers
62b575f226 rename property to match the iOS project
158b3f7 rename property to match the iOS project
a6cffcc1fc new events and renamed s/Closed Post/Closed/
5201e74 new events and renamed s/Closed Post/Closed/
2be54a517f Renaming language selection stat
35cf64c0f1 Add Analytics for notification settings
027e8f6 Add Analytics for notification settings
f07aad12f6 Fix a typo
edd4193 Fix a typo
b7425f5707 Fix naming conventions on some stats widget events for the Mixpanel tracker.
f42b776 Fix naming conventions on some stats widget events for the Mixpanel tracker.
eee1172a86 Add ACCOUNT_LOGOUT event to Mixpanel tracker.
7a659c6 Add ACCOUNT_LOGOUT event to Mixpanel tracker.
87cdc1af78 Tag OPENED_MY_PROFILE and OPENED_ACCOUNT_SETTINGS as future events
7a91682 Tag OPENED_MY_PROFILE and OPENED_ACCOUNT_SETTINGS as future events
173822c7ac Add a comment line "future" near READER_LIST_* events that were added but not yet used.
5236e54 Add a comment line "future" near READER_LIST_* events that were added but not yet used.
f2d8397108 Merge branch 'feature/site-settings-review' into feature/3441-site-settings-cleanup
5b8dbd410b Merge branch 'develop' of github.com:wordpress-mobile/WordPress-Android into develop
36e3c7b Merge branch 'develop' of github.com:wordpress-mobile/WordPress-Android into develop
7a9af8520d Merge branch 'release/4.8' into develop
229c864 Merge branch 'release/4.8' into develop
57f2b1b510 Removed `READER_FRESHLY_PRESSED_LOADED`
54088ae Removed `READER_FRESHLY_PRESSED_LOADED`
c7be31b34e Merge pull request #3501 from wordpress-mobile/issue/3487-correctly-track-user-blogs-num
be29fba Merge pull request #3501 from wordpress-mobile/issue/3487-correctly-track-user-blogs-num
38db25d44d Update user properties before tracking the event.
d5584c6 Update user properties before tracking the event.
4d0d9482df Remove Reblog event.
1e9c220 Remove Reblog event.
a63e30395b Remove Stats Opened Web Version from Analytics
71f9b09 Remove Stats Opened Web Version from Analytics
869151e3f6 Updating analytics based on feedback from PR
8491c8cbdc Merge pull request #3488 from wordpress-mobile/feature/add-profile-account-settings-analytics-values
213467b Merge pull request #3488 from wordpress-mobile/feature/add-profile-account-settings-analytics-values
9768530b06 Adds My Profile and Account Settings Analytics tracking values
a945c50 Adds My Profile and Account Settings Analytics tracking values
55b236a206 Adding analytics
c8e5c0448f Track APPLICATION_INSTALLED event
4226602 Track APPLICATION_INSTALLED event
332f718676 remove unused manageSession parameter
caf8a62 remove unused manageSession parameter
2664bf1882 Use the correct event names in Mixpanel.
a385661 Use the correct event names in Mixpanel.
6a7fac6233 Use the same event name of the iOS platform for the "Push Notification Tapped" event.
38693b9 Use the same event name of the iOS platform for the "Push Notification Tapped" event.
256c260a83 Do not track "dismissed" and "ignored" PNs to be in par with iOS.
3067bf5 Do not track "dismissed" and "ignored" PNs to be in par with iOS.
6c777ef71c - Track Push Notifications ignored event (when the user opens the app without interacting with the PNs) - Add the tracking code for PNs to Mixpanel
bb03085 - Track Push Notifications ignored event (when the user opens the app without interacting with the PNs) - Add the tracking code for PNs to Mixpanel
9fbbd090df Start tracking PNs analytics
33f06ba Start tracking PNs analytics
46e704b36e Updating gradle plugin to 1.5.0 and support/build tools to latest for sub projects
29b755f Updating gradle plugin to 1.5.0 and support/build tools to latest for sub projects
8375059c06 Refactoring cases to be consistent with previously existing tracking
12e5bb5 Refactoring cases to be consistent with previously existing tracking
0384a96cc3 Adding analytics events
e8ed675 Adding analytics events
faeab833a2 remove unused dependency in WPAndroid-Analytics
92ca93f remove unused dependency in WPAndroid-Analytics
96f826ed6d Unify "anon"  users by calling the new `trackAliasUser` method introduced in Tracks 1.1.
6141212 Unify "anon"  users by calling the new `trackAliasUser` method introduced in Tracks 1.1.
c2f12eff03 Update to Tracks 1.1.0
09bcd4d Update to Tracks 1.1.0
1e1305cd6f Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/2968-stats-widget-new
f4a7395 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/2968-stats-widget-new
1efff33ae0 Reader: Organizes and adds new analytics for the reader.
f0ce2b8 Reader: Organizes and adds new analytics for the reader.
0c035c9b22 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/2968-stats-widget
912796d Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into feature/2968-stats-widget
ab5a4bd3eb Add a flush method to Tracker interface and use it to track analytics for the widget.
f246a39 Add a flush method to Tracker interface and use it to track analytics for the widget.
4dcfe22b8d track APPLICATION_UPGRADED in Mixpanel
10e7328 track APPLICATION_UPGRADED in Mixpanel
b6f15b1ef7 Track Analytics usage.
49a090d Track Analytics usage.
e293858b5b Updating build tools to 23.0.1
1898b9d Updating build tools to 23.0.1
47e5569447 set targetSdkVersion to 23 and clean up lib dependencies
5998b30 set targetSdkVersion to 23 and clean up lib dependencies
f8f0591cb1 migrate from mavenCentral to jcenter (which is now the default for Android Studio)
7c6d39d migrate from mavenCentral to jcenter (which is now the default for Android Studio)
0e36206b5a upgrade mixpanel to 4.6.4
0b50795 upgrade mixpanel to 4.6.4
e1f7eb7c40 Merge branch 'develop' into feature/update-to-gradle-2.4
ddb8bdb069 Merge branch 'release/4.4' into develop
3f7b123 upgrade subtrees to latest android tools
a91a01d9e2 upgrade subtrees to latest android tools
bdf0f76 Merge branch 'develop' into feature/update-to-gradle-2.4
c77e02173e Merge branch 'develop' into feature/update-to-gradle-2.4
a559239 upgrade to gradle 2.5 and gradle plugin 1.3.0
9190db3354 upgrade to gradle 2.5 and gradle plugin 1.3.0
0709f0e Merge branch 'develop' into feature/update-to-gradle-2.4
3832cce7b3 Merge branch 'develop' into feature/update-to-gradle-2.4
f40c250 Merge branch 'develop' into feature/update-to-gradle-2.4
70041c43c8 Update Tracks to 1.0.5
ee78518293 Throw an IllegalArgumentException exception if a null context is passed
eda33fd Throw an IllegalArgumentException exception if a null context is passed
641f47228f Use a shorter version of the code that generates unique IDs.
7c69f90 Use a shorter version of the code that generates unique IDs.
00bf59f106 Add the name of the class that gets the anonID regenerated
c1ea6ac Add the name of the class that gets the anonID regenerated
133f2b78f6 Added the correct implementation of .org user tracking to Mixpanel
72bb6d7 Added the correct implementation of .org user tracking to Mixpanel
d19c011db9 Keep building/moving stuff in a common base class that will be used both in Tracks and Mixpanel Tracker.
6516e06 Keep building/moving stuff in a common base class that will be used both in Tracks and Mixpanel Tracker.
46ba0562dc Move Tracks anonID related methods to a common class.
c37552f Move Tracks anonID related methods to a common class.
93fd619091 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into issue/3043-remove-application-started
9f4f4f3 Merge branch 'develop' of https://github.com/wordpress-mobile/WordPress-Android into issue/3043-remove-application-started
1022fec17a - Removed `application_started` event. It's not used in any funnels and generates confusion. - Updated the tracking of publishing a post. Also fixes issues tracking of published post.
9bc5bfa - Removed `application_started` event. It's not used in any funnels and generates confusion. - Updated the tracking of publishing a post. Also fixes issues tracking of published post.
e189b8aa27 Update Tracks lib to version 1.0.5
4dcd657 Update Tracks lib to version 1.0.5
f71193b Merge branch 'hotfix/4.3.2' into develop
fa1127ca07 Merge branch 'hotfix/4.3.2' into develop
b143d50320 Merge branch 'hotfix/4.3.2' into release/4.4
88020dc Rename OPENED_SETTINGS to OPENED_BLOG_SETTINGS
4bca430 Bump analytics on the main ViewPager. Also fix other minor issues with analytics.
66fa906 Adds new analytics events for notifications.
f7c74bf0f3 Adds new analytics events for notifications.
50d829c101 Merge branch 'release/4.3' into develop
5309a0d Update Tracks to 1.0.4
c169601 Merge pull request #2913 from wordpress-mobile/issue/2903-update-track-to-1--0-4
cf96271 Track Application Upgraded and account logout events.
33fc70c Add missing break statements.
b9678b5 Track  new events for Insights & Period Stats in Tracks and Mixpanel.
71a3931 Add new events for Insights & Period Stats tracking
52ddeaa Update Tracks to 1.0.4
0be2bbb Updated support library and build tools
61573f1 update to gradle android plugin 1.2.3
0f98685 update to android-gradle plugin 1.1.3 and build tools 22.0.1
62319bf Merge branch 'develop' into feature/wpcom-push-authorization
a4adc2e Update Tracks to 1.0.3
57c1043 remove SETTINGS_LANGUAGE_SELECTION_FORCED from Tracks
aeaa782 add an event to track when users selecet a different language than the device default
ef3aeb6 add app_locale meta property to mixpanel events - this is already implemented in the Tracks library
1691713 Added new analytics properties for push authentication tracking.
36d60e2 Merge pull request #2603 from wordpress-mobile/issue/update-Tracks-lib-1-0-2
45a28c1 rename nosara event
f42dbbc Update tracks lib to version 1.0.2
e82ea9e add SUPPORT_SENT_REPLY_TO_SUPPORT_MESSAGE to AnalyticsTrackerNosara.java
df5964f Merge remote-tracking branch 'origin/develop' into issue/2470-track-helpshift-replies
841f0c5 Do not use dashes in properties.
137258c Make sure to handle the connection status to WPCOM correctly
8eef4bf Renamed two Reader events that were not updated correctly
df51693 Renamed events to have the action last. Also, some events names now use eventprops instead of having the full "action-string" hard-coded in them.
efe1e3e update to tracks 1.0.1

git-subtree-dir: libs/analytics
git-subtree-split: 3a16fd3bb33baed7a586efd27a9a0eb120630194
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants