Skip to content

Commit

Permalink
#6 feat/메인화면 : lifecycle 에 따른 flow 수집 시점 변경을 위한 `lifecycle-runtime-kt…
Browse files Browse the repository at this point in the history
…x` 추가
  • Loading branch information
HayleyKim0716 committed Aug 1, 2022
1 parent f271d65 commit 1c69d96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

Expand Down
2 changes: 2 additions & 0 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 1c69d96

Please sign in to comment.