Install SDK
The Android SDK packages are available on Bintray android-sdk using JCenter repository.
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:3.10.1'
Moving to MavenCentral
Bintray/JCenter will be shut down. The publish repository has been migrated to MavenCentral for the SDK version 3.10.1 or later. Older versions will be available in JCenter.
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'com.optimizely.ab:android-sdk:3.10.1'
}
The full source code is at https://github.com/optimizely/android-sdk.
Updated about 1 year ago