-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (36 loc) · 1.11 KB
/
build.gradle
File metadata and controls
43 lines (36 loc) · 1.11 KB
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
buildscript {
apply from: "${project.rootDir}/buildconstants/android-sdk-versions.gradle"
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath libs.android.build.tools.gradle
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
alias(libs.plugins.hilt.android) apply false
alias(libs.plugins.kotlin.android) apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
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}/buildsystem/common-methods.gradle"
}