Mobile/Fennec/Android/Switchboard

From MozillaWiki
< Mobile‎ | Fennec‎ | Android
Revision as of 22:18, 21 December 2015 by Margaret (talk | contribs) (Created page with "[https://github.com/mozilla-services/switchboard-server Switchboard] is a service we use to segment users for A/B testing. == Usage == To use Switchboard to expose a new feat...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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