-
Notifications
You must be signed in to change notification settings - Fork 132
/
build.gradle
54 lines (47 loc) · 1.54 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
buildscript {
ext {
minSdkVersion = 9
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
javaVersion = JavaVersion.VERSION_1_7
java8Version = JavaVersion.VERSION_1_8
butterknifeVersion = '10.1.0'
}
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "com.jakewharton:butterknife-gradle-plugin:${butterknifeVersion}"
}
}
plugins {
id("net.ltgt.errorprone") version "0.7.1"
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
}
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Xlint:all', '-Xlint:-processing', '-Werror']
}
group = GROUP
version = VERSION_NAME
}
ext.deps = [
annotations : 'androidx.annotation:annotation:1.0.2',
rxjava2 : 'io.reactivex.rxjava2:rxjava:2.2.7',
rxandroid : 'io.reactivex.rxjava2:rxandroid:2.1.1',
rxbinding : 'com.jakewharton.rxbinding3:rxbinding:3.0.0',
butterknife : "com.jakewharton:butterknife:${ext.butterknifeVersion}",
butterknifeCompiler: "com.jakewharton:butterknife-compiler:${ext.butterknifeVersion}",
junit : 'junit:junit:4.12',
assertj : 'org.assertj:assertj-core:3.12.2',
robolectric : 'org.robolectric:robolectric:4.2.1',
testcore : 'androidx.test:core:1.0.0'
]