-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
105 lines (97 loc) · 5.26 KB
/
dependencies.gradle
File metadata and controls
105 lines (97 loc) · 5.26 KB
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
103
104
105
ext {
//Android
androidMinSdkVersion = 21
androidTargetSdkVersion = 28
androidCompileSdkVersion = 28
//Libraries
kotlinVersion = '1.3.31'
rxKotlinVersion = '2.3.0'
rxAndroidVersion = '2.1.1'
rxJavaVersion = '2.2.8'
rxRelayVersion = '2.1.0'
rxBindingsVersion = '2.2.0'
ktxFragmentVersion = '1.1.0-alpha09'
roomVersion = '1.0.0-alpha9-1'
gsonVersion = '2.8.1'
okHttpVersion = '3.8.1'
retrofitVersion = '2.5.0'
roomVersion = '2.1.0-rc01'
appcompatVersion = '1.0.2'
materialVersion = '1.0.0'
livecycleExtensionsVersion = '2.0.0'
constraintlayoutVersion = '1.1.3'
glideVersion = '4.3.1'
timberVersion = '4.5.1'
glideVersion = '4.0.0'
daggerVersion = '2.20'
javaxAnnotationVersion = '1.0'
javaxInjectVersion = '1'
//Testing
jUnitVersion = '4.12'
assertJVersion = '3.8.0'
espressoVersion = '3.0.0'
mockitoKotlinVersion = '1.5.0'
dataDependencies = [
javaxAnnotation : "javax.annotation:jsr250-api:${javaxAnnotationVersion}",
javaxInject : "javax.inject:javax.inject:${javaxInjectVersion}",
okHttp : "com.squareup.okhttp3:okhttp:${okHttpVersion}",
okHttpLogger : "com.squareup.okhttp3:logging-interceptor:${okHttpVersion}",
gson : "com.google.code.gson:gson:${gsonVersion}",
roomRuntime : "androidx.room:room-runtime:${roomVersion}",
roomKotlin : "androidx.room:room-ktx:${roomVersion}",
roomCompiler : "androidx.room:room-compiler:${roomVersion}",
roomRxJava : "androidx.room:room-rxjava2:${roomVersion}",
rxKotlin : "io.reactivex.rxjava2:rxkotlin:${rxKotlinVersion}",
rxJava : "io.reactivex.rxjava2:rxjava:${rxJavaVersion}",
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}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerVersion}"
]
dataTestDependencies = [
junit : "junit:junit:${jUnitVersion}",
kotlinJUnit: "org.jetbrains.kotlin:kotlin-test-junit:${kotlin_version}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
mockito : "com.nhaarman:mockito-kotlin:${mockitoKotlinVersion}",
]
domainDependencies = [
javaxAnnotation: "javax.annotation:jsr250-api:${javaxAnnotationVersion}",
javaxInject : "javax.inject:javax.inject:${javaxInjectVersion}",
rxKotlin : "io.reactivex.rxjava2:rxkotlin:${rxKotlinVersion}",
rxJava : "io.reactivex.rxjava2:rxjava:${rxJavaVersion}",
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlinVersion}",
]
domainTestDependencies = [
junit : "junit:junit:${jUnitVersion}",
kotlinJUnit: "org.jetbrains.kotlin:kotlin-test-junit:${kotlin_version}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
mockito : "com.nhaarman:mockito-kotlin:${mockitoKotlinVersion}",
]
presentationDependencies = [
glide : "com.github.bumptech.glide:glide:${glideVersion}",
glideCompiler : "com.github.bumptech.glide:compiler:${glideVersion}",
constrainLayout : "androidx.constraintlayout:constraintlayout:${constraintlayoutVersion}",
appcompat : "androidx.appcompat:appcompat:${appcompatVersion}",
ktxFragment : "androidx.fragment:fragment-ktx:${ktxFragmentVersion}",
lifecycleExtensions: "androidx.lifecycle:lifecycle-extensions:${livecycleExtensionsVersion}",
javaxAnnotation : "javax.annotation:jsr250-api:${javaxAnnotationVersion}",
javaxInject : "javax.inject:javax.inject:${javaxInjectVersion}",
rxKotlin : "io.reactivex.rxjava2:rxkotlin:${rxKotlinVersion}",
rxJava : "io.reactivex.rxjava2:rxjava:${rxJavaVersion}",
rxRelay : "com.jakewharton.rxrelay2:rxrelay:${rxRelayVersion}",
rxAndroid : "io.reactivex.rxjava2:rxandroid:${rxAndroidVersion}",
rxBindings : "com.jakewharton.rxbinding2:rxbinding-kotlin:${rxBindingsVersion}",
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlinVersion}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerVersion}",
material : "com.google.android.material:material:${materialVersion}"
]
presentationTestDependencies = [
junit : "junit:junit:${jUnitVersion}",
kotlinJUnit: "org.jetbrains.kotlin:kotlin-test-junit:${kotlin_version}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
mockito : "com.nhaarman:mockito-kotlin:${mockitoKotlinVersion}",
]
}