diff --git a/docs/sdk/client-side-sdks/android/android-install.md b/docs/sdk/client-side-sdks/android/android-install.md
index e3e7c081..aa49e802 100644
--- a/docs/sdk/client-side-sdks/android/android-install.md
+++ b/docs/sdk/client-side-sdks/android/android-install.md
@@ -21,7 +21,7 @@ import PromptContent from '!!raw-loader!@site/static/ai-prompts/android.md'
## Requirements
-This version of the DevCycle Android Client SDK supports a minimum Android API Version 23.
+This version of the DevCycle Android Client SDK supports a minimum Android API Version 26 (Android 8.0).
:::info
**Proguard/R8:** If minifying your project, DevCycle requires **Android Gradle Plugin 7.1.x or higher**
@@ -33,13 +33,13 @@ This version of the DevCycle Android Client SDK supports a minimum Android API V
The SDK can be installed into your Android project by adding the following to _build.gradle_:
-```yaml
-implementation("com.devcycle:android-client-sdk:+")
+```gradle
+implementation("com.devcycle:android-client-sdk:2.9.0")
```
[//]: # 'wizard-install-end'
:::info
-Refer to the latest version of the SDK on [maven central](https://maven.org/artifact/com.devcycle/android-client-sdk) if you would not prefer gradle to pull the latest version automatically by using `+`
+Refer to [Maven Central](https://maven.org/artifact/com.devcycle/android-client-sdk) for the latest release. Pin the version in your build so upgrades are deliberate.
:::
diff --git a/docs/sdk/client-side-sdks/android/android-openfeature.md b/docs/sdk/client-side-sdks/android/android-openfeature.md
index b9824caf..59dd0fae 100644
--- a/docs/sdk/client-side-sdks/android/android-openfeature.md
+++ b/docs/sdk/client-side-sdks/android/android-openfeature.md
@@ -26,7 +26,7 @@ import PromptContent from '!!raw-loader!@site/static/ai-prompts/android-openfeat
### Requirements
-This integration requires **Android API version 23+** and is available starting from DevCycle Android SDK version `>= 2.6.0`.
+This integration requires **Android API version 26+**. The documented installation uses DevCycle Android SDK version `2.9.0` or later within the supported 2.x release line.
## Installation
@@ -35,8 +35,8 @@ The DevCycle OpenFeature Provider is included in the main Android SDK. To add it
### Gradle
```gradle
-implementation("com.devcycle:android-client-sdk:2.6.3+")
-implementation("dev.openfeature:kotlin-sdk:0.6.2+")
+implementation("com.devcycle:android-client-sdk:2.9.0")
+implementation("dev.openfeature:kotlin-sdk:0.6.2")
```
### Maven
@@ -45,18 +45,18 @@ implementation("dev.openfeature:kotlin-sdk:0.6.2+")
com.devcycle
android-client-sdk
- 2.6.3+
+ 2.9.0
compile
dev.openfeature
kotlin-sdk
- 0.6.2+
+ 0.6.2
compile
```
-This package automatically includes the OpenFeature Android Kotlin SDK as a dependency.
+The Android SDK includes the OpenFeature Kotlin SDK as a dependency. Pin both direct dependencies to versions compatible with your application.
## Getting Started
@@ -351,4 +351,4 @@ An example Android application demonstrating how to use the DevCycle OpenFeature
### Development
-For more details, see the [DevCycle Android SDK GitHub repository](https://github.com/DevCycleHQ/android-client-sdk).
\ No newline at end of file
+For more details, see the [DevCycle Android SDK GitHub repository](https://github.com/DevCycleHQ/android-client-sdk).