I'm using EasyTracker in my Android App and I need a way to disable Analytics tracking when the app is in "development" or "testing" mode (I have a flag in a constants file to discriminate).
What's the best way to do so?
Thanks!
|
|
|
You can use a class with a static boolean value let's say DEBUG like this :
In code, just use :
This is a solution working on all android SDK versions! |
|||||
|
|
What I'm doing is disabling periodic dispatching, by setting a negative period, in analytics.xml:
or you can do it programmatically, using your flag:
That way hits are not sent unless you do it manually. That should work if you are using only periodic dispatching (never calling See in Google Analytics Developer Guide:
More info: https://developers.google.com/analytics/devguides/collection/android/v2/dispatch |
|||
|
|
|
Just comment the following line in your
Google Analytics wouldn't be able to find any tracking id, so EasyTracker won't be able to do its job. When you are building the app for release, uncomment the line and you're good to go. |
|||
|
|