Skip to content
Merged
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
8 changes: 4 additions & 4 deletions docs/sdk/client-side-sdks/android/android-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand All @@ -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")
```
Comment on lines -36 to 38

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually prefer the + as a concept here to prevent state drift.

[//]: # '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.

:::
14 changes: 7 additions & 7 deletions docs/sdk/client-side-sdks/android/android-openfeature.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -45,18 +45,18 @@ implementation("dev.openfeature:kotlin-sdk:0.6.2+")
<dependency>
<groupId>com.devcycle</groupId>
<artifactId>android-client-sdk</artifactId>
<version>2.6.3+</version>
<version>2.9.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>dev.openfeature</groupId>
<artifactId>kotlin-sdk</artifactId>
<version>0.6.2+</version>
<version>0.6.2</version>
<scope>compile</scope>
</dependency>
```

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

Expand Down Expand Up @@ -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).
For more details, see the [DevCycle Android SDK GitHub repository](https://github.com/DevCycleHQ/android-client-sdk).
Loading