forked from airbnb/mavericks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (35 loc) · 1005 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
buildscript {
ext.kotlinVersion = '1.3.11'
ext.supportLibVersion = '28.0.0'
ext.lifecycleVersion = '1.1.1'
ext.robolectricVersion = '4.0.2'
ext.epoxyVersion = '2.16.4'
ext.moshiVersion = '1.6.0'
ext.koinVersion = '0.9.3'
ext.retrofitVersion = '2.4.0'
ext.navVersion = '1.0.0-alpha08'
ext.roomVersion = '1.1.1'
ext.buildToolsVersion = '28.0.3'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
version = VERSION_NAME
group = GROUP
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}