From 39cd67688d169b98f6f8a9430c52c1b96294ae44 Mon Sep 17 00:00:00 2001 From: Jonathan Norris Date: Thu, 6 Aug 2026 09:02:22 -0400 Subject: [PATCH 1/2] docs: align Kotlin SDK documentation --- .../client-side-sdks/android/android-install.md | 6 +++--- .../android/android-openfeature.md | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/sdk/client-side-sdks/android/android-install.md b/docs/sdk/client-side-sdks/android/android-install.md index e3e7c081..99439d95 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** @@ -34,12 +34,12 @@ 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:+") +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..ad4e8547 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+** and is available starting from DevCycle Android SDK version `>= 2.6.0`. ## 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). From 92d1d92f4b1b2318c8ebfc47bb551c9fce48ef56 Mon Sep 17 00:00:00 2001 From: Jonathan Norris Date: Thu, 6 Aug 2026 14:33:50 -0400 Subject: [PATCH 2/2] docs: address Android SDK review comments --- docs/sdk/client-side-sdks/android/android-install.md | 2 +- docs/sdk/client-side-sdks/android/android-openfeature.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sdk/client-side-sdks/android/android-install.md b/docs/sdk/client-side-sdks/android/android-install.md index 99439d95..aa49e802 100644 --- a/docs/sdk/client-side-sdks/android/android-install.md +++ b/docs/sdk/client-side-sdks/android/android-install.md @@ -33,7 +33,7 @@ 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 +```gradle implementation("com.devcycle:android-client-sdk:2.9.0") ``` [//]: # 'wizard-install-end' diff --git a/docs/sdk/client-side-sdks/android/android-openfeature.md b/docs/sdk/client-side-sdks/android/android-openfeature.md index ad4e8547..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 26+** 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