-
Notifications
You must be signed in to change notification settings - Fork 1
Update App dependencies #154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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" | ||
|
|
@@ -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
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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" } | ||
|
|
||
There was a problem hiding this comment.
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.