Install the Android SDK
Describes the steps necessary to install the Optimizely Feature Experimentation Android SDK into your application.
The Android SDK is distributed through Maven Central. The android-sdk
package is available on MavenCentral.
To add the android-sdk
and all modules to your project, include this line in your app's build.gradle
in the dependencies
block:
implementation 'com.optimizely.ab:android-sdk:4.0.0-beta2'
NoteOptimizely previously distributed the Android SDK through Bintray and JCenter.
As of April 27, 2021, Bintray and JCenter became a read-only repository indefinitely and the publish repository has been migrated to MavenCentral for the SDK version 3.10.1 and later. Older versions are still available in JCenter.
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'com.optimizely.ab:android-sdk:4.0.0-beta2'
}
The full source code is available on GitHub.
Updated 3 days ago