This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
59 lines (52 loc) · 2.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
ext {
kotlin_version = '1.4.10'
appCompat_version = '1.1.0'
lifecycle_version = '2.1.0'
legacySupport_version = '1.0.0'
constraintLayout_version = '1.1.3'
vectorDrawable_version = '1.1.0'
coroutines_version = '1.3.2'
dagger_version = '2.29.1'
room_version = "2.2.1"
applicationDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
appCompat : "androidx.appcompat:appcompat:$appCompat_version",
ktx : "androidx.core:core-ktx:$appCompat_version",
materialDesign : "com.google.android.material:material:1.1.0-beta01",
lifecycleExtensions: "androidx.lifecycle:lifecycle-extensions:$lifecycle_version",
legacySupport : "androidx.legacy:legacy-support-v4:$legacySupport_version",
constraintLayout : "androidx.constraintlayout:constraintlayout:$constraintLayout_version",
vectorDrawable : "androidx.vectordrawable:vectordrawable:$vectorDrawable_version",
coroutinesCore : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version",
coroutinesAndroid : "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version",
dagger : "com.google.dagger:dagger:$dagger_version",
daggerCompiler : "com.google.dagger:dagger-compiler:$dagger_version",
room : "androidx.room:room-runtime:$room_version",
roomCompiler : "androidx.room:room-compiler:$room_version",
roomKtx : "androidx.room:room-ktx:$room_version",
flexboxLayout : "com.google.android:flexbox:2.0.0",
threeTenAbp : "com.jakewharton.threetenabp:threetenabp:1.2.1",
viewModelScope : "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0",
timber : "com.jakewharton.timber:timber:4.7.1"
]
junit_version = '4.12'
mockk_version = '1.9.3'
kotlinTest_version = '3.3.2'
kakao_version = '2.2.0'
espresso_version = '3.2.0'
androidTest_version = '1.1.0'
testDependencies = [
junit : "junit:junit:$junit_version",
mockk : "io.mockk:mockk:$mockk_version",
kotlinTestFramework : "io.kotlintest:kotlintest-runner-junit5:$kotlinTest_version",
coroutinesTest : "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version",
kakao : "com.agoda.kakao:kakao:$kakao_version",
espresso : "androidx.test.espresso:espresso-core:$espresso_version",
espressoContrib : "androidx.test.espresso:espresso-contrib:$espresso_version",
androidTestRunner : "androidx.test:runner:$androidTest_version",
androidTestRules : "androidx.test:rules:$androidTest_version",
androidTestCore : "androidx.test:core:$androidTest_version",
androidTestExt : "androidx.test.ext:junit-ktx:$androidTest_version",
androidTestFragments: "androidx.fragment:fragment-testing:$androidTest_version"
]
}