forked from airbnb/mavericks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (38 loc) · 1.09 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
buildscript {
ext.kotlinVersion = '1.3.11'
ext.appCompatVersion = '1.0.2'
ext.recyclerViewVersion = '1.0.0'
ext.lifecycleVersion = '2.0.0'
ext.robolectricVersion = '4.0.2'
ext.epoxyVersion = '3.2.0'
ext.moshiVersion = '1.6.0'
ext.koinVersion = '0.9.3'
ext.retrofitVersion = '2.4.0'
ext.navVersion = '1.0.0-alpha08'
ext.roomVersion = '2.0.0'
ext.buildToolsVersion = '28.0.3'
ext.androidXTestVersion = '1.1.0'
ext.espressoVersion = '3.1.1'
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')
}
}