From 4cacbc3dd6de01da9e5ad988fced46fed8eed919 Mon Sep 17 00:00:00 2001 From: "Hanjoong.Cho" Date: Wed, 19 Jun 2024 20:34:24 +0900 Subject: [PATCH] refactor: Update dependency --- app/build.gradle | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c5bf927c6..f8dabdc6e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -136,10 +136,10 @@ dependencies { implementation 'androidx.vectordrawable:vectordrawable:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.biometric:biometric:1.1.0' - implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.1' - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.1' + implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.2' + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2' implementation 'androidx.activity:activity-ktx:1.9.0' - implementation 'androidx.fragment:fragment-ktx:1.7.1' + implementation 'androidx.fragment:fragment-ktx:1.8.0' implementation 'androidx.preference:preference-ktx:1.2.1' implementation ('androidx.work:work-runtime-ktx:2.9.0') { exclude group: 'com.google.guava', module: 'listenablefuture' } implementation "androidx.browser:browser:1.8.0" @@ -147,12 +147,12 @@ dependencies { implementation 'androidx.core:core-splashscreen:1.0.1' // compose - implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.8.1' - implementation 'androidx.compose.runtime:runtime-livedata:1.6.7' + implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2' + implementation 'androidx.compose.runtime:runtime-livedata:1.6.8' implementation 'androidx.compose.material3:material3:1.2.1' - implementation 'androidx.compose.ui:ui-tooling-preview:1.6.7' - implementation 'androidx.compose.foundation:foundation-layout:1.7.0-beta02' - debugImplementation 'androidx.compose.ui:ui-tooling:1.6.7' + implementation 'androidx.compose.ui:ui-tooling-preview:1.6.8' + implementation 'androidx.compose.foundation:foundation-layout:1.7.0-beta03' + debugImplementation 'androidx.compose.ui:ui-tooling:1.6.8' // google components for develop package (not foss) gmsDevImplementation 'com.google.android.gms:play-services-auth:21.2.0' @@ -163,8 +163,8 @@ dependencies { // google components for production package (not foss) gmsProdImplementation 'com.google.android.gms:play-services-auth:21.2.0' - gmsProdImplementation 'com.google.android.play:core:1.10.3' - gmsProdImplementation 'com.google.android.play:core-ktx:1.8.1' + gmsProdImplementation 'com.google.android.play:review:2.0.1' + gmsProdImplementation 'com.google.android.play:review-ktx:2.0.1' gmsProdImplementation 'com.google.api-client:google-api-client-android:1.26.0' gmsProdImplementation 'com.google.apis:google-api-services-drive:v3-rev136-1.25.0' gmsProdImplementation 'com.google.apis:google-api-services-calendar:v3-rev411-1.25.0' @@ -174,7 +174,7 @@ dependencies { implementation 'com.google.android.material:material:1.12.0' implementation 'com.google.android:flexbox:1.0.0' implementation 'com.google.code.gson:gson:2.10.1' - implementation 'com.google.guava:guava:30.1.1-android' + implementation 'com.google.guava:guava:33.0.0-android' // apache commons // From version 2.7, it calls the java.nio.file API internally. @@ -189,7 +189,7 @@ dependencies { // implementation project(":aafactory-commons") // etc. - implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.20' + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.0.0' implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3' implementation 'com.github.chrisbanes:PhotoView:2.1.3' implementation 'com.github.QuadFlask:colorpicker:0.0.15' @@ -238,5 +238,5 @@ dependencies { testImplementation 'androidx.test.espresso:espresso-intents:3.5.1' testImplementation 'androidx.test.ext:truth:1.5.0' testImplementation 'junit:junit:4.13.2' - testImplementation 'org.robolectric:robolectric:4.5-alpha-1' + testImplementation 'org.robolectric:robolectric:4.11.1' }