-
Notifications
You must be signed in to change notification settings - Fork 61
/
build.gradle
40 lines (34 loc) · 1.21 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: "${project.rootDir}/buildconstants/android-sdk-versions.gradle"
apply from: "${project.rootDir}/buildconstants/dependency-versions.gradle"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(Test) {
testLogging {
exceptionFormat "full"
showCauses true
showExceptions true
showStackTraces true
showStandardStreams true
events = ["passed", "skipped", "failed"]
// This line is left here to make test debugging easier
// events = ["passed", "skipped", "failed", "standardError", "standardOut"]
}
}
apply from: "${project.rootDir}/buildconstants/android-sdk-versions.gradle"
apply from: "${project.rootDir}/buildconstants/dependency-versions.gradle"
apply from: "${project.rootDir}/buildsystem/common-methods.gradle"
}