chore: roll up dependency updates to fix Gradle 9 build - #47
Merged
Conversation
Kotlin 2.1.0 is incompatible with Gradle 9.4.0 (merged in #34), causing all CI builds to fail with "Cannot add extension with name 'kotlin'". This rolls up all pending dependabot bumps into a single update so the build compiles again. Version changes: - kotlin: 2.1.0 -> 2.3.20 (#42) - com.google.devtools.ksp: 2.1.0-1.0.29 -> 2.3.6 (#39) - retrofit: 2.11.0 -> 3.0.0 (#40) - okhttp: 4.12.0 -> 5.3.2 (#41) - activity-compose: 1.12.4 -> 1.13.0 (#45) - navigation-compose: 2.8.5 -> 2.9.7 (#38) - hilt-navigation-compose: 1.2.0 -> 1.3.0 (#44) - kotlinx-coroutines: 1.8.0 -> 1.10.2 (#31) - security-crypto: 1.1.0-alpha06 -> 1.1.0 (#43) - mockk: 1.13.13 -> 1.14.9 (#27) - actions/checkout: v4 -> v6 (#37)
This was referenced Mar 29, 2026
AGP 9.0+ has built-in Kotlin support, making the separate org.jetbrains.kotlin.android plugin redundant. Applying both causes a build failure. Remove it from app, sdk, and root build files.
AGP 9.0 infers the Kotlin JVM target from compileOptions, making
the kotlinOptions { jvmTarget } block unnecessary. Move the SDK's
freeCompilerArgs to a top-level kotlin { compilerOptions } block.
navigation-compose 2.9.7 transitively depends on libraries that require compileSdk 36. Bump both app and sdk modules.
|
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
Kotlin 2.1.0 is incompatible with Gradle 9.4.0 (merged in #34), causing all CI builds to fail with
Cannot add extension with name 'kotlin', as there is an extension already registered with that name. This rolls up all 10 pending dependabot PRs into a single update so the build compiles again.Version changes:
Supersedes #27, #31, #37, #38, #39, #40, #41, #42, #43, #44, #45.
Test Checklist
Platform