-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
63 lines (60 loc) · 2.04 KB
/
build.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
buildscript {
ext.versions = [
"android_ktx": "1.1.0",
"buglife": "1.5.1",
"constraint_layout": "2.0.0-beta3",
"coroutines": "1.3.0",
"dagger": "2.24",
"dimens": "1.4",
"espresso": "3.1.2-alpha01",
"firebase": "17.0.0",
"firebase_crashlytics": "2.10.1",
"flexbox" : "1.1.0",
"glide": "4.10.0",
"google_maps": "17.0.0",
"gradle": '3.5.3',
"groupie": "2.3.0",
"junit": "4.12",
"kotlin": "1.3.50",
"kotlinx_serialization": "0.13.0",
"ktor": "1.2.5",
"leakcanary": "2.0-beta-3",
"lifecycle": "2.1.0",
"lifecycle_viewmodel_ktx": "2.2.0-rc01",
"material_components": "1.2.0-alpha03",
"materialprogressview": "1.0.6",
"mockito": "2.28.2",
"mockito_kotlin": "2.1.0",
"moshi": "1.8.0",
"navigation": "2.1.0",
"okhttp_mockwebserver": "4.1.0",
"recyclerviewanimators": "3.0.0",
"retrofit": "2.6.1",
"room": "2.2.0-beta01",
"test": "1.2.0",
"support": "1.0.0"
]
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "org.jetbrains.kotlin:kotlin-serialization:$versions.kotlin"
classpath "org.jlleitschuh.gradle:ktlint-gradle:8.1.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url 'https://jitpack.io' }
}
}