Update LaunchDarkly Android Client SDK to 5.11.0#12
Merged
kinyoklion merged 5 commits intomainfrom Mar 3, 2026
Merged
Conversation
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 <rlamb@launchdarkly.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Member
|
The CI workflows failed. Please investigate. |
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 <rlamb@launchdarkly.com>
…ager.devin.ai/proxy/github.com/launchdarkly/hello-android into devin/1772498437-update-android-sdk
Contributor
Author
|
Investigated and fixed the CI failure. The root cause was: SDK 5.11.0 transitively depends on Upgraded the build tooling to fix:
Also moved Both |
kinyoklion
approved these changes
Mar 3, 2026
tanderson-ld
approved these changes
Mar 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps the
launchdarkly-android-client-sdkdependency from 5.0.0 to 5.11.0 (the latest 5.x release) so the hello example app uses the current version of the SDK.SDK 5.11.0 transitively depends on
kotlin-stdlib2.2.0, which is incompatible with the project's previous Kotlin 1.8.0 compiler. To fix the resulting CI build failure, the build tooling has been upgraded as well.Updates since last revision
Upgraded build tooling to resolve
compileDebugKotlinfailure caused by Kotlin metadata version mismatch (kotlin-stdlib2.2.0 vs compiler 1.8.0):namespacefromAndroidManifest.xmlpackageattribute intoapp/build.gradle(required by AGP 8.x).Review & Testing Checklist for Human
minSdk 24is correct. This was bumped from 21 — confirm that SDK 5.x actually requires API 24+. If not, revert to 21 to avoid unnecessarily dropping Android 5.0–6.x device support.boolVariationevaluates correctly and the flag listener fires on updates.jvmTarget = '1.8'— this was not changed, but confirm it's still appropriate with Kotlin 2.2.0 (it should be, but worth a glance).Notes