From d6407bdc3f121e959b4c9cab1c0fd40821cdabf5 Mon Sep 17 00:00:00 2001 From: iTaysonLab <9827543+iTaysonLab@users.noreply.github.com> Date: Fri, 21 Oct 2022 17:07:21 -0600 Subject: [PATCH] Update libraries Signed-off-by: iTaysonLab <9827543+iTaysonLab@users.noreply.github.com> --- app/build.gradle | 6 +++--- build.gradle | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 548580a0..7a9516d7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -85,14 +85,14 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-datetime:0.4.0" // AndroidX - coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5" + coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.2.0" implementation "androidx.core:core-ktx:1.9.0" implementation "androidx.palette:palette-ktx:1.0.0" implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1" // Compose implementation "androidx.navigation:navigation-compose:2.5.2" - implementation "androidx.activity:activity-compose:1.5.1" + implementation "androidx.activity:activity-compose:1.6.0" implementation "androidx.compose.material:material:$compose_version" implementation "androidx.compose.material3:material3:$compose_m3_version" implementation "androidx.compose.material:material-icons-extended:$compose_version" @@ -137,7 +137,7 @@ dependencies { // Data - SQL implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-ktx:$room_version" - implementation "androidx.room:room-paging:2.5.0-alpha03" + implementation "androidx.room:room-paging:$room_version" kapt "androidx.room:room-compiler:$room_version" // Data - Proto diff --git a/build.gradle b/build.gradle index 15b4cb36..46804899 100644 --- a/build.gradle +++ b/build.gradle @@ -3,13 +3,13 @@ buildscript { version_code = 13 version_name = "poc_v13" - compose_version = "1.3.0-beta03" - compose_m3_version = "1.0.0-beta03" + compose_version = "1.3.0-rc01" + compose_m3_version = "1.0.0-rc01" compose_compiler_version = "1.3.1" media2_version = "1.2.1" - accompanist_version = "0.26.2-beta" - room_version = "2.5.0-alpha03" + accompanist_version = "0.26.5-rc" + room_version = "2.5.0-beta01" librespot_commit = "e95c4f0529" hilt_version = "2.43.2" @@ -17,8 +17,8 @@ buildscript { } plugins { - id "com.android.application" version '7.3.0' apply false - id "com.android.library" version '7.3.0' apply false + id "com.android.application" version '7.3.1' apply false + id "com.android.library" version '7.3.1' apply false id "org.jetbrains.kotlin.android" version "1.7.10" apply false id "com.google.dagger.hilt.android" version "$hilt_version" apply false }