Skip to content
Open
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
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ android {
buildConfig = true
}
configurations.all {
resolutionStrategy.force("org.jetbrains.kotlin:kotlin-metadata-jvm:2.3.0")
resolutionStrategy.force("org.jetbrains.kotlin:kotlin-metadata-jvm:2.4.0")

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Verify if the resolutionStrategy.force for kotlin-metadata-jvm is still necessary with the new compiler version 2.4.0.

exclude(group = "com.google.guava", module = "listenablefuture")
}

Expand Down
28 changes: 14 additions & 14 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[versions]
android_gradle_plugin = "8.13.2"
kotlin_gradle_plugin = "2.3.0"
kotlin_gradle_plugin = "2.4.0"

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Kotlin is updated to 2.4.0 but KSP is left at 2.3.8. KSP versions must strictly match the Kotlin compiler version to prevent compilation failure.

ksp_gradle_plugin = "2.3.8"
coreKtx = "1.17.0"
coreKtx = "1.19.0"
compileSdk = "36"
minSdk = "26"
targetSdk = "35"
appcompat = "1.7.1"
material = "1.13.0"
material = "1.14.0"
junit = "4.13.2"
room = "2.8.4"
robolectric = "4.16.1"
Expand All @@ -18,27 +18,27 @@ testRules = "1.7.0"
espresso = "3.7.0"
turbine = "1.2.1"
retrofit = "3.0.0"
okhttp = "5.3.2"
okhttp = "5.4.0"
moshi = "1.15.2"
androidx_annotation = "1.9.1"
androidx_annotation = "1.10.0"
mockk = "1.14.9"
kotlinx_coroutines_test = "1.10.2"
kotlin_test_junit = "2.3.0"
kotlinx_coroutines_test = "1.11.0"
kotlin_test_junit = "2.4.0"
androidx-compose-bom = "2025.12.01"
androidx-navigation-compose = "2.9.6"
androidx-navigation-compose = "2.9.8"
androidx-compose-material-icons-extended = "1.7.8"
androidx-compose-ui = "1.10.0"
androidx-compose-ui = "1.11.4"
androidx-compose-material3 = "1.4.0"
androidx-activity-compose = "1.12.2"
hilt = "2.57.2"
hilt_navigation_compose = "1.3.0"
androidx-activity-compose = "1.13.0"
Comment on lines +28 to +32

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Explicitly setting versions for androidx-compose-ui and composeAnimation to 1.11.3 despite having a BOM. These should be removed to let the BOM manage them.

hilt = "2.60"
hilt_navigation_compose = "1.4.0"
androidx_core_splashscreen = "1.2.0"
composeAnimation = "1.10.0"
composeAnimation = "1.11.4"
dropshots = "0.5.1"
genai_prompt = "1.0.0-beta2"
optimaize = "0.6"
google_oss_licenses = "0.12.0"
play_services_oss_licenses = "17.0.1"
play_services_oss_licenses = "17.5.1"

[libraries]
androidx-core-splashscreen = { group = "androidx.core", name = "core-splashscreen", version.ref = "androidx_core_splashscreen" }
Expand Down
Loading