-
Notifications
You must be signed in to change notification settings - Fork 11
/
dependencies.gradle
102 lines (89 loc) · 4.75 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
ext {
kotlinVersion = "1.3.31"
compileSdkVersion = 28
minSdkVersion = 16
targetSdkVersion = 28
constraintLayoutVersion = "1.1.3"
ktxVersion = "1.2.0-alpha01"
appCompatVersion = "1.1.0-alpha05"
rxKotlinVersion = "2.3.0"
rxAndroidVersion = "2.1.1"
retrofitVersion = "2.5.0"
lifecycleVersion = "2.0.0"
roomVersion = "2.1.0-rc01"
koinVersion = "2.0.1"
supportVersion = "1.0.0"
picassoVersion = "2.71828"
debugDb = "1.0.6"
junitVersion = "4.12"
testRunnerVersion = "1.2.0"
espressoVersion = "3.2.0"
assertJVersion = '3.12.2'
mockitoKotlinVersion = '2.1.0'
robolectricVersion = "4.3"
androidSupportRunnerVersion = '1.0.0'
androidSupportRulesVersion = '1.0.0'
testCoreVersion = '1.0.0'
appDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
appCompat : "androidx.appcompat:appcompat:$appCompatVersion",
ktx : "androidx.core:core-ktx:$ktxVersion",
constraintLayout : "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion",
rxKotlin : "io.reactivex.rxjava2:rxkotlin:$rxKotlinVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
koinAndroid : "org.koin:koin-android:$koinVersion",
koinAndroidScope : "org.koin:koin-android-scope:$koinVersion",
koinAndroidViewModel: "org.koin:koin-android-viewmodel:$koinVersion",
cardView : "androidx.cardview:cardview:$supportVersion",
recyclerView : "androidx.recyclerview:recyclerview:$supportVersion",
picasso : "com.squareup.picasso:picasso:$picassoVersion",
debugDb : "com.amitshekhar.android:debug-db:$debugDb",
junit : "junit:junit:$junitVersion",
testRunner : "androidx.test:runner:$testRunnerVersion",
espresso : "androidx.test.espresso:espresso-core:$espressoVersion"
]
presentationDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
lifeCycle : "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion",
lifeCycleCompiler: "androidx.lifecycle:lifecycle-compiler:$lifecycleVersion"
]
domainDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
rxKotlin: "io.reactivex.rxjava2:rxkotlin:$rxKotlinVersion",
junit : "junit:junit:${junitVersion}",
mockito : "com.nhaarman.mockitokotlin2:mockito-kotlin:${mockitoKotlinVersion}",
assertj : "org.assertj:assertj-core:${assertJVersion}"
]
dataDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
rxKotlin: "io.reactivex.rxjava2:rxkotlin:$rxKotlinVersion"
]
remoteDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
retrofit : "com.squareup.retrofit2:retrofit:$retrofitVersion",
retrofitConverter: "com.squareup.retrofit2:converter-gson:$retrofitVersion",
retrofitAdapter : "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion",
junit : "junit:junit:${junitVersion}",
mockito : "com.nhaarman.mockitokotlin2:mockito-kotlin:${mockitoKotlinVersion}",
assertj : "org.assertj:assertj-core:${assertJVersion}"
]
cacheDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
room : "androidx.room:room-runtime:$roomVersion",
roomCompiler : "androidx.room:room-compiler:$roomVersion",
roomRx : "androidx.room:room-rxjava2:$roomVersion",
junit : "junit:junit:${junitVersion}",
mockito : "com.nhaarman.mockitokotlin2:mockito-kotlin:${mockitoKotlinVersion}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
robolectric : "org.robolectric:robolectric:${robolectricVersion}",
roomTesting : "android.arch.persistence.room:testing:${roomVersion}",
archTesting : "android.arch.core:core-testing:${roomVersion}",
supportRunner: "com.android.support.test:runner:${androidSupportRunnerVersion}",
supportRules : "com.android.support.test:rules:${androidSupportRulesVersion}",
testCore : "androidx.test:core:${testCoreVersion}"
]
sharedDependencies = [
kotlin: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
]
}