Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

3 Answers

up vote 1 down vote accepted

You can use a class with a static boolean value let's say DEBUG like this :

public final class BuildMode {
        public final static boolean DEBUG = true;
}

In code, just use :

if (BuildMode.DEBUG) ...

This is a solution working on all android SDK versions!

share|improve this answer
BuildMode.DEBUG or rather BuildConfig.DEBUG? – pawelzieba May 2 at 10:17
As far as I know, you can't use BuildConfig.DEBUG on lower versions of android. – iulia May 2 at 11:44

What I'm doing is disabling periodic dispatching, by setting a negative period, in analytics.xml:

<integer name="ga_dispatchPeriod">-60</integer>

or you can do it programmatically, using your flag:

if (testingMode) {
    GAServiceManager.getInstance().setDispatchPeriod(-1);
} else {
    GAServiceManager.getInstance().setDispatchPeriod(60);
}

That way hits are not sent unless you do it manually.

That should work if you are using only periodic dispatching (never calling .dispatch() manually). Hits not sent before 4 a.m. of the following day are somehow discarded, I guess, as they are not appearing in the reports anyway.

See in Google Analytics Developer Guide:

Note: Data must be dispatched and received by 4 a.m. of the following day, in the local timezone of each profile. Any data received later than that will not appear in reports.

More info: https://developers.google.com/analytics/devguides/collection/android/v2/dispatch

share|improve this answer

Just comment the following line in your analytics.xml file while you are in development mode.

<string name="ga_trackingId">UA-****</string>

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.