From 1c69d96d3f43faf66fba29559292ec6aee01b3ec Mon Sep 17 00:00:00 2001 From: HayleyKim0716 Date: Mon, 1 Aug 2022 22:19:30 +0900 Subject: [PATCH] =?UTF-8?q?#6=20feat/=EB=A9=94=EC=9D=B8=ED=99=94=EB=A9=B4?= =?UTF-8?q?=20:=20lifecycle=20=EC=97=90=20=EB=94=B0=EB=A5=B8=20flow=20?= =?UTF-8?q?=EC=88=98=EC=A7=91=20=EC=8B=9C=EC=A0=90=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=EC=9D=84=20=EC=9C=84=ED=95=9C=20`lifecycle-runtime-ktx`=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle | 5 ++--- versions.gradle | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index ce9adac..1e2ef7f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -47,9 +47,6 @@ dependencies { implementation project(path: ':domain') implementation project(path: ':data') implementation project(path: ':design') - testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation "androidx.core:core-ktx:$core_ktx_version" implementation "androidx.appcompat:appcompat:$appcompat_version" @@ -60,6 +57,8 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_coroutines_android_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_core_version" + implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_runtime_ktx_version" + // Preferences DataStore (안드로이드 종속성 하위에서 사용할 때) implementation "androidx.datastore:datastore-preferences:$datastore_preferences_version" diff --git a/versions.gradle b/versions.gradle index 001557a..e065f8d 100644 --- a/versions.gradle +++ b/versions.gradle @@ -11,6 +11,8 @@ ext { kotlinx_coroutines_android_version = '1.6.1' kotlinx_coroutines_core_version = '1.5.0' + + lifecycle_runtime_ktx_version = '2.6.0-alpha01' datastore_preferences_version = '1.0.0' hilt_version = '2.43'