From 0f350d886a2d1c2236eb610a62c637498b78d2db Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 00:40:59 +0000 Subject: [PATCH 1/2] Update LaunchDarkly Android Client SDK to 5.11.0 Updates the launchdarkly-android-client-sdk dependency from 5.0.0 to 5.11.0, the latest 5.x release. Co-Authored-By: rlamb@launchdarkly.com --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index f92f68b..6ab3a10 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -28,7 +28,7 @@ android { } dependencies { - implementation 'com.launchdarkly:launchdarkly-android-client-sdk:5.0.0' + implementation 'com.launchdarkly:launchdarkly-android-client-sdk:5.11.0' implementation 'androidx.core:core-ktx:1.10.1' implementation 'androidx.appcompat:appcompat:1.6.1' From 6b6d23438a0c103f1968cadb9cf2c4466245404e Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 21:44:01 +0000 Subject: [PATCH 2/2] Upgrade build tooling for SDK 5.11.0 compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SDK 5.11.0 depends on kotlin-stdlib 2.2.0, which requires matching Kotlin compiler version. Updates: - Kotlin plugin: 1.8.0 → 2.2.0 - AGP: 7.4.2 → 8.7.0 - Gradle wrapper: 7.5 → 8.9 - compileSdk/targetSdk: 33 → 34 - minSdk: 21 → 24 (required by SDK 5.x) - Moved namespace from AndroidManifest.xml to build.gradle (AGP 8.x requirement) Co-Authored-By: rlamb@launchdarkly.com --- app/build.gradle | 7 ++++--- app/src/main/AndroidManifest.xml | 5 ++--- build.gradle | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 6ab3a10..ad00217 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,11 +4,12 @@ plugins { } android { - compileSdkVersion(33) + namespace "com.launchdarkly.hello_android" + compileSdk 34 defaultConfig { applicationId "com.launchdarkly.hello_android" - minSdkVersion(21) - targetSdkVersion(33) + minSdkVersion(24) + targetSdkVersion(34) versionCode 1 versionName "1.0" } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 3e9fb21..760d71d 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ - + - \ No newline at end of file + diff --git a/build.gradle b/build.gradle index ab2b874..4bb9652 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id 'com.android.application' version '7.4.2' apply false - id 'com.android.library' version '7.4.2' apply false - id 'org.jetbrains.kotlin.android' version '1.8.0' apply false -} \ No newline at end of file + id 'com.android.application' version '8.7.0' apply false + id 'com.android.library' version '8.7.0' apply false + id 'org.jetbrains.kotlin.android' version '2.2.0' apply false +} diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d29d5e5..6947721 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Thu May 18 11:37:10 CDT 2023 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME