-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
42 lines (41 loc) · 2.19 KB
/
dependencies.gradle
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
32
33
34
35
36
37
38
39
40
41
42
ext {
kotlin = "1.4.32"
androidxCore = "1.3.1"
appcompat = "1.2.0"
materialDesign = "1.2.1"
constraintLayout = "2.0.1"
junit = "4.13.2"
extTest = "1.1.2"
espresso = "3.3.0"
hilt = "2.28-alpha"
hiltLifecycle = "1.0.0-alpha01"
lifecycle = "2.3.1"
androidxActivity = "1.1.0"
coroutines = "1.4.1"
retrofit = "2.9.0"
coreTesting = "2.1.0"
mockito = "2.2.0"
dependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:$kotlin",
androidxCore : "androidx.core:core-ktx:$androidxCore",
appcompat : "androidx.appcompat:appcompat:$appcompat",
materialDesign : "com.google.android.material:material:$materialDesign",
constraintLayout : "androidx.constraintlayout:constraintlayout:$constraintLayout",
junit : "junit:junit:$junit",
extTest : "androidx.test.ext:junit:$extTest",
espresso : "androidx.test.espresso:espresso-core:$espresso",
hilt : "com.google.dagger:hilt-android:$hilt",
hiltCompiler : "com.google.dagger:hilt-android-compiler:$hilt",
hiltLifecycle : "androidx.hilt:hilt-lifecycle-viewmodel:$hiltLifecycle",
hiltLifecycleCompiler : "androidx.hilt:hilt-compiler:$hiltLifecycle",
lifecycleViewModel : "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle",
lifecycleLiveData : "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle",
androidxActivity : "androidx.activity:activity-ktx:$androidxActivity",
coroutines : "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines",
retrofit : "com.squareup.retrofit2:retrofit:$retrofit",
gsonConverter : "com.squareup.retrofit2:converter-gson:$retrofit",
coreTesting : "androidx.arch.core:core-testing:$coreTesting",
coroutinesTest : "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines",
mockito : "com.nhaarman.mockitokotlin2:mockito-kotlin:$mockito"
]
}