Android Components > Service > Experiments
An Android SDK for running experiments on user segments in multiple branches.
Contents:
Use Gradle to download the library from maven.mozilla.org (Setup repository):
implementation "org.mozilla.components:service-experiments:{latest-version}"
In order to use the library, first you have to initialize it by calling Experiments.initialize()
.
You do this once per app launch (typically in your Application
class onCreate
method). You
simply have to call Experiments.initialize()
and provide the applicationContext
(and optionally
a Configuration
object and callback for when the experiments are updated), like this:
class SampleApp : Application() {
override fun onCreate() {
Experiments.initialize(
applicationContext,
configuration // This is optional, e.g. for overriding the fetch client.
) {
// This is an optional callback that can be provided to inform the application
// when the experiments are updated, so that they can check `withExperiment`, etc.
doSomething()
}
}
}
This library makes use of Glean for reporting experiment enrollment. If Glean is not used and initialized by the application, the recording methods are a no-op.
The library updates its list of experiments automatically and asynchronously from Kinto on library initialization. As this is asynchronous, it will not have immediate effect.
Afterwards, the list of experiments will be updated in the background every 6 hours.
A consuming application may provide a callback function to the initialize
function in order to
receive notification when the experiments have been updated, taking the form of () -> Unit
.
In order to check if a user is part of a specific experiment, Experiments
provides a
Kotlin-friendly withExperiment
API. You pass the id of the experiment you want to check and if the
client is in the experiment, you get the selected branch name passed:
Experiments.withExperiment("button-color-experiment") { branchName ->
when(branchName) {
"red" -> button.setBackgroundColor(Color.RED)
"control" -> button.setBackgroundColor(DEFAULT_COLOR)
}
}
To test experiments and branching, use the Kinto staging server available. You are responsible for cleaning up your experiments when you are finished testing.
There is no way to test branching locally only, unfortunately - you must have the experiment available on a testing server.
The staging server is only for internal testing, and requires additional permissions. Allocate at least a few days to make sure you can get the correct permissions.
You will need:
- Set up the VPN
- Get the relevant experiment creation/approval permissions by reaching out to the Mobile Experiments team.
The staging server interface is here. Once you have completed the above prerequisites, you'll be able to log in with LDAP.
In the mobile-experiments
record list, create new entries for experiments as needed.
- Use the debug commands below to switch to the
staging
endpoint.
Experiments exports the ExperimentsDebugActivity
that can be used to trigger functionality or toggle debug features on or off. Users can invoke this special activity, at
run-time, using the following adb
command:
adb shell am start -n [applicationId]/mozilla.components.service.experiments.debug.ExperimentsDebugActivity [extra keys]
In the above:
-
[applicationId]
is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this isorg.mozilla.samples.glean
for a release build andorg.mozilla.samples.glean.debug
for a debug build. -
[extra keys]
is a list of extra keys to be passed to the debug activity. See the documentation for the command line switches used to pass the extra keys. These are the currently supported keys:key type description updateExperiments boolean (--ez) Forces the experiments updater to run and fetch experiments immediately. You must pass true
orfalse
following this switch but either will update experiments if this is presentsetKintoInstance string (--es) Sets the Kinto instance to the specified instance ("dev", "staging", "prod" only) overrideExperiment string (--es) Used to pass in the experiment name to override. Must be followed by the branch
command below.branch string (--es) Used to set the branch for overriding the experiment and is meant to be used with the overrideExperiment
command above.clearAllOverrides boolean (--ez) Clears any overrides that have been set. You must pass true
orfalse
following this switch but either will clear the overrides if this is present. Should not be used in combination with theoverrideExperiment
command
To direct a release build of the Glean sample application to (1) update experiments immediately and (2) change the Kinto instance to the staging instance, the following command can be used:
adb shell am start -n org.mozilla.samples.glean.debug/mozilla.components.service.experiments.debug.ExperimentsDebugActivity \
--ez updateExperiments true \
--es setKintoInstance staging
To direct a release build of the Glean sample application to override the experiment and branch, the following command can be used:
adb shell am start -n org.mozilla.samples.glean.debug/mozilla.components.service.experiments.debug.ExperimentsDebugActivity --es overrideExperiment testExperiment --es branch testBranch
The library loads its list of experiments from Kinto. Kinto provides data in the following JSON format:
{
// The whole list of experiments lives in a Kinto "collection".
"data": [
// Each experiments data is described in a "record".
{
"id":"some-experiment",
// ...
"last_modified":1523549895713
},
// ... more records.
]
}
An individual experiment record looks e.g. like this:
{
"id": "button-color-expirement",
"description": "The button color experiments tests ... per bug XYZ.",
// Enroll 50% of the population in the experiment.
"buckets": {
"start": 0,
"count": 500
},
// Distribute enrolled clients among two branches.
"branches": [
{
"name": "control",
"ratio": 1
},
{
"name": "red-button-color",
"ratio": 2 // Two thirds of the enrolled clients get red buttons.
}
],
"match": {
"app_id": "^org.mozilla.firefox${'$'}",
"locale_language": "eng|zho|deu"
// Possibly more matchers...
}
}
The experiments records in Kinto contain the following properties:
Name | Type | Required | Description | Example |
---|---|---|---|---|
id | string | x | The unique id of the experiment. | "login-button-color-test" |
description | string | x | A detailed description of the experiment. | |
last_modified | number | x | Timestamp of when this experiment was last modified. This is provided by Kinto. | |
schema | number | x | Timestamp of when the schema was last modified. This is provided by Kinto. | |
buckets | object | x | Object containing a bucket range to match users. Every user is in one of 1000 buckets (0-999). | |
buckets.start | number | x | The minimum bucket to match. | |
buckets.count | number | x | The number of buckets to match from start. If (start + count >= 999), evaluation will wrap around. | |
branches | object | x | Object containing the parameters for ratios for randomized enrollment into different branches. | |
branches[i].name | string | x | The name of that branch. | "control" or "red-button" |
branches[i].ratio | number | x | The weight to randomly distribute enrolled clients among the branches. | |
match | object | x | Object containing the filter parameters to match specific user groups. | |
match.app_id | regex | The app ID (package name) | "^org.mozilla.firefox_beta${'$'}|^org.mozilla.firefox${'$'}" |
|
match.device_manufacturer | regex | The Android device manufacturer. | ||
match.device_model | regex | The Android device model, Build.DEVICE . This is the codename for the device's industrial design. |
"^(flame|coral)$" (to match Pixel 4 or Pixel 4 XL) |
|
match.locale_country | The default locales country. | "USA|DEU" |
||
match.locale_language | The default locales language. | "eng|zho|deu" |
||
match.app_display_version | regex | The application version. | "1.0.0" |
|
match.app_min_version | string | The minimum application version, inclusive. | "1.0.1" |
|
match.app_max_version | string | The maximum application version, inclusive. | "1.4.2" |
|
match.regions | array | Array of strings. Not currently supported. Custom regions, different from the one from the default locale (like a GeoIP, or something similar). | ["USA", "GBR"] |
|
match.debug_tags | array | Array of strings. Debug tags to match only specific client for QA of experiments launch & targeting. | ["john-test-1"] |
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/