Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Optimizely Android X SDK Changelog

## 5.2.0
May 5, 2026

### New Features

**Feature Rollout**: Added support for Feature Rollouts, a new experiment type
combining Targeted Delivery simplicity with A/B test measurement capabilities.
Feature Rollouts enable progressive rollouts with full impact analytics, metric tracking,
and confidence intervals.
See [Feature Rollout docs](https://support.optimizely.com/hc/en-us/articles/45552846481037-Run-Feature-Rollouts-in-Feature-Experimentation) for more information.

- Update to use the Optimizely [Java SDK 4.4.0](https://github.com/optimizely/java-sdk/releases/tag/4.4.0)

### Fixes and Improvements

- Update cmab error handling ([#522](https://github.com/optimizely/android-sdk/pull/522))


## 5.1.1
January 20th, 2025

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repositories {
}

dependencies {
implementation 'com.optimizely.ab:android-sdk:5.1.0'
implementation 'com.optimizely.ab:android-sdk:5.2.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ext {
build_tools_version = "35.0.0"
min_sdk_version = 21
target_sdk_version = 35
java_core_ver = "4.3.1"
java_core_ver = "4.4.0"
android_logger_ver = "1.3.6"
jacksonversion= "2.11.2"
annotations_ver = "1.2.0"
Expand Down
5 changes: 3 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Maven local version (when android-sdk built for local maven repo)
version = 3.5.0-SNAPSHOT
# Maven version
# - keep SNAPSHOT for fallback for local build version
version = 0.0.0-SNAPSHOT

android.enableJetifier=true
android.useAndroidX=true
Expand Down
Loading