Mobile/Fennec/Android/Switchboard

From MozillaWiki
< Mobile‎ | Fennec‎ | Android
Revision as of 20:14, 19 January 2016 by Margaret (talk | contribs) (→‎Usage)
Jump to navigation Jump to search

Switchboard is a service we use to segment users for A/B testing.

Usage

To use Switchboard to expose a new feature to a portion of our users, use a code snippet like this:

 if (SwitchBoard.isInExperiment(this, "yourexperimentname")) {
   // Do something interesting.
 }

We also need to add the "yourexperimentname" name to the Switchboard server config.

Examples