From 5d1223b016365be32c04e9f49a2745be811b3d1f Mon Sep 17 00:00:00 2001 From: fat-tire <528174+fat-tire@users.noreply.github.com> Date: Wed, 21 May 2025 23:19:46 -0700 Subject: [PATCH] Bump support libraries and add material components library --- Android/src/app/build.gradle.kts | 1 + Android/src/gradle/libs.versions.toml | 28 ++++++++++++++------------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Android/src/app/build.gradle.kts b/Android/src/app/build.gradle.kts index 9d63325..caefb9a 100644 --- a/Android/src/app/build.gradle.kts +++ b/Android/src/app/build.gradle.kts @@ -100,4 +100,5 @@ dependencies { androidTestImplementation(libs.androidx.ui.test.junit4) debugImplementation(libs.androidx.ui.tooling) debugImplementation(libs.androidx.ui.test.manifest) + implementation(libs.material) } \ No newline at end of file diff --git a/Android/src/gradle/libs.versions.toml b/Android/src/gradle/libs.versions.toml index 7eca9d2..f0e5e6b 100644 --- a/Android/src/gradle/libs.versions.toml +++ b/Android/src/gradle/libs.versions.toml @@ -1,21 +1,22 @@ [versions] -agp = "8.8.2" -kotlin = "2.1.0" -coreKtx = "1.15.0" +agp = "8.10.0" +kotlin = "2.1.21" +coreKtx = "1.16.0" junit = "4.13.2" junitVersion = "1.2.1" espressoCore = "3.6.1" -lifecycleRuntimeKtx = "2.8.7" +lifecycleRuntimeKtx = "2.9.0" activityCompose = "1.10.1" -composeBom = "2025.05.00" -navigation = "2.8.9" -serializationPlugin = "2.0.21" -serializationJson = "1.7.3" +composeBom = "2025.05.01" +material = "1.14.0-alpha01" +navigation = "2.9.0" +serializationPlugin = "2.1.21" +serializationJson = "1.8.1" materialIconExtended = "1.7.8" -workRuntime = "2.10.0" -dataStore = "1.1.4" -gson = "2.12.1" -lifecycleProcess = "2.8.7" +workRuntime = "2.10.1" +dataStore = "1.1.7" +gson = "2.13.1" +lifecycleProcess = "2.9.0" #noinspection GradleDependency mediapipeTasksText = "0.10.21" mediapipeTasksGenai = "0.10.24" @@ -26,7 +27,7 @@ playServicesTfliteJava = "16.4.0" playServicesTfliteGpu= "16.4.0" cameraX = "1.4.2" netOpenidAppauth = "0.11.1" -splashscreen = "1.2.0-beta01" +splashscreen = "1.2.0-beta02" [libraries] androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } @@ -45,6 +46,7 @@ androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit androidx-material3 = { group = "androidx.compose.material3", name = "material3" } androidx-compose-navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" } kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serializationJson" } +material = { module = "com.google.android.material:material", version.ref = "material" } material-icon-extended = { group = "androidx.compose.material", name = "material-icons-extended", version.ref = "materialIconExtended" } androidx-work-runtime = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "workRuntime" } androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "dataStore" }