How to implement opt out feature of Google Analytics in android?
How can we implement the opt out feature of Google Analytics in android? Is there any method that we need to use or we need to do it using some flags(handle explicitly in the code)? Any pointers will 开发者_Python百科be of great help. Thanks in advance
Documentation on adding option for users to opt out from Google Analytics is available on the Developer portal now:
https://developers.google.com/analytics/devguides/collection/android/v2/advanced#opt-out
You could implement a boolean SharedPreference that stores whether Google Analytics should be enabled or not. Before calling dispatch() on your tracker, check the preference.
精彩评论