From 325814d0feabd0cb14966a22445d6d08da2f73ff Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 13 Feb 2024 19:22:02 -0500 Subject: [PATCH] Upgrading deps. (#1377) --- app/build.gradle.kts | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1b174da3c..0a3604caa 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -103,7 +103,7 @@ android { compose = true } composeOptions { - kotlinCompilerExtensionVersion = "1.5.8" + kotlinCompilerExtensionVersion = "1.5.9" } } @@ -130,7 +130,7 @@ dependencies { implementation("com.google.accompanist:accompanist-systemuicontroller:$accompanistVersion") // LiveData - implementation("androidx.compose.runtime:runtime-livedata:1.6.0") + implementation("androidx.compose.runtime:runtime-livedata:1.6.1") implementation("androidx.lifecycle:lifecycle-runtime-compose:2.7.0") implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.7.0") @@ -162,22 +162,20 @@ dependencies { implementation("io.arrow-kt:arrow-core:1.2.1") // Unfortunately, ui tooling, and the markdown thing, still brings in the other material2 dependencies - // RC is necessary due to this bug - // https://stackoverflow.com/questions/77877363/no-virtual-method-atljava-lang-objectilandroidx-compose-animation-core-keyfra - implementation("androidx.compose.material3:material3:1.2.0-rc01") - implementation("androidx.compose.material3:material3-window-size-class:1.1.2") + implementation("androidx.compose.material3:material3:1.2.0") + implementation("androidx.compose.material3:material3-window-size-class:1.2.0") implementation("org.ocpsoft.prettytime:prettytime:5.0.7.Final") - implementation("androidx.navigation:navigation-compose:2.7.6") + implementation("androidx.navigation:navigation-compose:2.7.7") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") testImplementation("androidx.arch.core:core-testing:2.2.0") - implementation("androidx.compose.ui:ui:1.6.0") - implementation("androidx.compose.ui:ui-tooling-preview:1.6.0") - androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.0") - debugImplementation("androidx.compose.ui:ui-tooling:1.6.0") - debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.0") - implementation("androidx.compose.material:material-icons-extended:1.6.0") + implementation("androidx.compose.ui:ui:1.6.1") + implementation("androidx.compose.ui:ui-tooling-preview:1.6.1") + androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.1") + debugImplementation("androidx.compose.ui:ui-tooling:1.6.1") + debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.1") + implementation("androidx.compose.material:material-icons-extended:1.6.1") implementation("androidx.activity:activity-compose:1.8.2") testImplementation("junit:junit:4.13.2")