Skip to content

Commit

Permalink
fix: app 모듈 build.gradle version catalog 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhooon committed Mar 12, 2023
1 parent 9a3a16e commit 448e1b6
Showing 1 changed file with 34 additions and 33 deletions.
67 changes: 34 additions & 33 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,77 +59,78 @@ dependencies {
implementation(project(":feature:home"))
implementation(project(":feature:write"))

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.6.1'
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
implementation 'androidx.compose.material3:material3:1.1.0-alpha04'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
implementation libs.core.ktx
implementation libs.lifecycle.runtime
implementation libs.activity.compose
implementation libs.compose.ui
implementation libs.compose.tooling.preview
implementation libs.material3.compose
testImplementation libs.junit
androidTestImplementation libs.junit.ext
androidTestImplementation libs.espresso.core
androidTestImplementation libs.compose.ui.test
debugImplementation libs.compose.ui.tooling
debugImplementation libs.compose.ui.test.manifest

// Compose Navigation
implementation libs.navigation.compose
// implementation "androidx.navigation:navigation-compose:2.5.3"

// Room components
implementation "androidx.room:room-runtime:2.5.0"
kapt "androidx.room:room-compiler:2.5.0"
implementation "androidx.room:room-ktx:2.5.0"
implementation libs.room.runtime
implementation libs.room.ktx
kapt libs.room.compiler

// Runtime Compose
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.0-alpha04"
implementation libs.runtime.compose

// Splash API
implementation "androidx.core:core-splashscreen:1.0.0"
implementation libs.splash.api

// Mongo DB Realm
implementation('org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt') {
version {
strictly("1.6.0-native-mt")
}
}
implementation "io.realm.kotlin:library-sync:1.0.2"
implementation libs.realm.sync

// Dagger Hilt
implementation "com.google.dagger:hilt-android:2.44.2"
kapt "com.google.dagger:hilt-compiler:2.44.2"
implementation "androidx.hilt:hilt-navigation-compose:1.0.0"
implementation libs.hilt.android
implementation libs.hilt.navigation.compose
kapt libs.hilt.compiler


// Coil
implementation "io.coil-kt:coil-compose:2.2.2"
implementation libs.coil

// Pager - Accompanist
implementation "com.google.accompanist:accompanist-pager:0.28.0"
implementation libs.accompanist.pager

// Desugar JDK API
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.0'
// coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.0'
implementation libs.desugar.jdk

// One-Tap Compose
implementation 'com.github.stevdza-san:OneTapCompose:1.0.0'
implementation libs.one.tap.compose

// Message Bar Compose
implementation 'com.github.stevdza-san:MessageBarCompose:1.0.5'
implementation libs.message.bar.compose

// Compose dialog support Material 3
// Date Picker
implementation 'com.maxkeppeler.sheets-compose-dialogs:core:1.0.2'
implementation libs.date.time.picker

// Calendar
implementation 'com.maxkeppeler.sheets-compose-dialogs:calendar:1.0.2'
implementation libs.date.dialog

// Clock
implementation 'com.maxkeppeler.sheets-compose-dialogs:clock:1.0.2'
implementation libs.time.dialog

// Timber
implementation 'com.jakewharton.timber:timber:5.0.1'
implementation libs.timber

// Firebase
implementation 'com.google.firebase:firebase-auth-ktx:21.1.0'
implementation 'com.google.firebase:firebase-storage-ktx:20.1.0'
implementation libs.firebase.auth
implementation libs.firebase.storage

}

0 comments on commit 448e1b6

Please sign in to comment.