forked from egroden/mvico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (38 loc) · 1.02 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
buildscript {
ext.kotlinVersion = "1.3.72"
repositories {
google()
jcenter()
maven { url "https://dl.bintray.com/jetbrains/kotlin-native-dependencies" }
maven { url "https://dl.bintray.com/icerockdev/plugins" }
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
}
}
ext {
coroutinesVersion = '1.3.5'
constarint_layout_version = '1.1.3'
recyclerview_version = '1.1.0'
glide_version = '4.10.0'
okhttp_version = '4.2.2'
lifecycleVersion = "2.2.0"
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://dl.bintray.com/icerockdev/moko" }
}
}
repositories {
google()
jcenter()
mavenCentral()
}