forked from googlearchive/firebase-jobdispatcher-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (28 loc) · 833 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
apply from: 'common/constants.gradle'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
}
}
allprojects { project ->
repositories {
jcenter()
}
project.apply from: "${rootDir}/common/constants.gradle"
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task wrapper(type: Wrapper) {
// The combination of JUnit, Gradle, and Robolectric + Jacoco for code
// coverage is broken for Jacoco [v7.3.x, v7.5.x]. 7.2 works, but doesn't
// have great support for running on later versions of Android. 7.6 works,
// but requires Gradle 2.13+.
//
// See: https://github.com/jacoco/jacoco/pull/288
gradleVersion = '3.1'
}