forked from Evernote/android-job
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 991 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
44
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked"
options.compilerArgs << "-Xlint:deprecation"
}
}
ext {
compileSdkVersion = 26
targetSdkVersion = compileSdkVersion
minSdkVersion = 14
buildToolsVersion = '27.0.3'
supportLibVersion = '26.1.0'
playServicesVersion = '15.0.1'
workVersion = '1.0.0-alpha05'
stethoVersion = '1.5.0'
junitVersion = '4.12'
assertjVersion = '3.6.2'
mockitoVersion = '2.7.22'
robolectricVersion = '3.6.1'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.8.1'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}