-
Notifications
You must be signed in to change notification settings - Fork 20
/
dependencies.gradle
60 lines (48 loc) · 2.01 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
ext {
// versions are relevant for 11 april 2019
compileSdkVersion = 28
minSdkVersion = 21
buildToolsVersion = '28.0.3'
targetSdkVersion = 28
archVersion = "2.0.0"
supportVersion = "1.1.0-alpha05"
material = "1.1.0-alpha06"
constraintlayoutVersion = "1.1.3"
multiDexVersion = "2.0.0"
lifeCycleVersion = '1.0.0'
glide_version = '4.9.0'
anko_version = '0.10.8'
rxJava2Version = '2.2.8'
rxKotlinVersion = '2.3.0'
rxAndroidVersion = '2.1.1'
joda_time_version = '2.10.2'
supportDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version",
appCompat : "androidx.appcompat:appcompat:$supportVersion",
recyclerView : "androidx.recyclerview:recyclerview:$supportVersion",
design : "com.google.android.material:material:$material",
lifecycleExtension: "androidx.lifecycle:lifecycle-extensions:$archVersion",
constraintlayout : "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion",
multiDex : "androidx.multidex:multidex:$multiDexVersion",
]
glideDependencies = [
glide : "com.github.bumptech.glide:glide:$glide_version",
compiler : "com.github.bumptech.glide:glide:$glide_version",
]
kotlinDependencies = [
jdk: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
]
rxDependencies = [
rxJava2 : "io.reactivex.rxjava2:rxjava:$rxJava2Version",
rxKotlin : "io.reactivex.rxjava2:rxkotlin:$rxKotlinVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
]
ankoDependencies = [
anko : "org.jetbrains.anko:anko:$anko_version",
commons: "org.jetbrains.anko:anko-commons:$anko_version",
common : "org.jetbrains.anko:anko-common:$anko_version"
]
jodaDependencies = [
time: "joda-time:joda-time:$joda_time_version"
]
}