-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
43 lines (37 loc) · 882 Bytes
/
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.kotlin_version = '1.3.50'
ext.retrofit_version = '2.6.2'
ext.okhttp_version = '3.12.0'
ext.coroutines_version = "1.3.2"
ext.kotlin_reflect_version = "1.2.71"
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
google()
jcenter()
mavenCentral()
}
configurations {
ktlint
}
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}