-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared_dependencies.gradle
More file actions
31 lines (24 loc) · 908 Bytes
/
shared_dependencies.gradle
File metadata and controls
31 lines (24 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import com.wiryadev.gamemade.buildsrc.*
dependencies {
implementation Libs.AndroidX.coreKtx
implementation Libs.AndroidX.appCompat
implementation Libs.AndroidX.multidex
implementation Libs.AndroidX.Navigation.ui
implementation Libs.AndroidX.Navigation.fragment
testImplementation Libs.Test.Junit.junit
androidTestImplementation Libs.Test.Junit.androidExt
androidTestImplementation Libs.Test.Espresso.core
debugImplementation Libs.AndroidX.leakCanary
// UI
implementation Libs.AndroidX.UI.constraintLayout
implementation Libs.AndroidX.UI.recyclerView
implementation Libs.AndroidX.UI.material
implementation Libs.AndroidX.UI.coil
implementation Libs.AndroidX.UI.lottie
implementation Libs.AndroidX.UI.shimmer
// Hilt
implementation Libs.Hilt.android
kapt Libs.Hilt.compiler
// Paging
implementation Libs.Paging.paging
}