Update LaunchDarkly Android Client SDK to 5.11.0#5
Open
devin-ai-integration[bot] wants to merge 2 commits intomainfrom
Open
Update LaunchDarkly Android Client SDK to 5.11.0#5devin-ai-integration[bot] wants to merge 2 commits intomainfrom
devin-ai-integration[bot] wants to merge 2 commits intomainfrom
Conversation
Updates the launchdarkly-android-client-sdk dependency from 4.2.2 to 5.11.0, the latest release of the LaunchDarkly Android Client SDK. Co-Authored-By: rlamb@launchdarkly.com <rlamb@launchdarkly.com>
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:
|
SDK 5.11.0 requires newer build tooling. Updates: - AGP: 4.1.3 → 8.7.0 (migrated from buildscript to plugins DSL) - Gradle wrapper: 6.7 → 8.9 - compileSdk/targetSdk: 33 → 34 - minSdk: 21 → 24 - Added pluginManagement and dependencyResolutionManagement to settings.gradle - Moved namespace from AndroidManifest.xml to build.gradle (AGP 8.x requirement) Co-Authored-By: rlamb@launchdarkly.com <rlamb@launchdarkly.com>
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
launchdarkly-android-client-sdkfrom 4.2.2 to 5.11.0 — a major version upgrade (4.x → 5.x).SDK 5.11.0 requires newer build tooling than what the project previously used (AGP 4.1.3 / Gradle 6.7). The build configuration has been modernized to match.
Updates since last revision
Upgraded the entire build toolchain for SDK 5.11.0 compatibility:
Additional structural changes:
build.gradlefrom legacybuildscript/allprojectsDSL to modernpluginsDSLpluginManagementanddependencyResolutionManagementblocks tosettings.gradlenamespacefromAndroidManifest.xmlpackageattribute toapp/build.gradle(required by AGP 8.x)Review & Testing Checklist for Human
minSdk 24is actually required. This was bumped from 21 — confirm whether SDK 5.x truly requires API 24+. If not, revert to 21 to avoid dropping Android 5.0–6.x device support unnecessarily.LDClient,LDConfig.Builder,LDContext,ContextKind, andLaunchDarklyException. Confirm none of these were removed or had breaking signature changes in v5. Check the SDK changelog / migration guide for breaking changes.build.gradleandsettings.gradlewere substantially rewritten (legacy → modern DSL migration), so verify Gradle sync and build succeed.LaunchDarklyException(used inMainActivity.javacatch block) still exists and is thrown in the same circumstances in v5.Notes