2019-01-12 13:10:02 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2023-02-20 19:13:06 +01:00
|
|
|
ext.kotlin_version = '1.8.0'
|
2019-09-14 12:56:10 +02:00
|
|
|
|
2019-01-12 13:10:02 +01:00
|
|
|
repositories {
|
|
|
|
google()
|
2021-07-02 18:56:11 +02:00
|
|
|
mavenCentral()
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-08-27 22:31:47 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.1'
|
2019-09-14 12:56:10 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-09-16 22:29:25 +02:00
|
|
|
classpath "org.jacoco:org.jacoco.core:0.8.7"
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2021-09-16 22:29:25 +02:00
|
|
|
apply plugin: 'jacoco'
|
|
|
|
|
2019-01-12 13:10:02 +01:00
|
|
|
repositories {
|
|
|
|
google()
|
2019-09-14 12:56:10 +02:00
|
|
|
mavenCentral()
|
2020-12-28 15:32:21 +01:00
|
|
|
maven { url 'https://jitpack.io' }
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|
2019-02-09 19:55:09 +01:00
|
|
|
afterEvaluate {
|
|
|
|
tasks.withType(JavaCompile.class) {
|
|
|
|
options.compilerArgs << "-Xmaxerrs" << "1000"
|
|
|
|
}
|
|
|
|
}
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|
|
|
|
|
2019-12-21 21:46:02 +01:00
|
|
|
ext {
|
2023-08-27 22:31:47 +02:00
|
|
|
compileSdkVersion = 34
|
2019-12-21 21:46:02 +01:00
|
|
|
minSdkVersion = 21
|
2023-08-27 22:31:47 +02:00
|
|
|
targetSdkVersion = 34
|
|
|
|
buildToolsVersion = "34.0.0"
|
2019-12-21 21:46:02 +01:00
|
|
|
}
|
|
|
|
|
2023-08-15 22:44:44 +02:00
|
|
|
tasks.register('clean', Delete) {
|
2019-01-12 13:10:02 +01:00
|
|
|
delete rootProject.buildDir
|
2021-09-16 22:29:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
jacoco {
|
|
|
|
toolVersion = "0.8.7"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-15 22:44:44 +02:00
|
|
|
tasks.register('jacocoFullReport', JacocoReport) {
|
2021-09-16 22:29:25 +02:00
|
|
|
group = 'Reporting'
|
|
|
|
description = "Generate Jacoco coverage reports for the debug build"
|
|
|
|
|
|
|
|
reports {
|
|
|
|
html {
|
|
|
|
enabled true
|
|
|
|
destination file('build/reports/jacoco/html')
|
|
|
|
}
|
|
|
|
xml {
|
|
|
|
enabled true
|
|
|
|
destination file('build/reports/jacoco/jacocoFullReport.xml')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-02 18:43:14 +02:00
|
|
|
//dependsOn ":app:testDebugUnitTest"
|
2021-09-16 22:29:25 +02:00
|
|
|
dependsOn ":api:testDebugUnitTest"
|
|
|
|
dependsOn ":db:testDebugUnitTest"
|
2024-07-02 18:43:14 +02:00
|
|
|
//dependsOn ":app:connectedAndroidTest"
|
2021-10-04 23:15:35 +02:00
|
|
|
dependsOn ":db:connectedAndroidTest"
|
2021-09-16 22:29:25 +02:00
|
|
|
|
|
|
|
final fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', 'android/**/*.*']
|
|
|
|
|
|
|
|
classDirectories.setFrom files([
|
2024-07-02 18:43:14 +02:00
|
|
|
//fileTree(dir: "$project.rootDir/app/build/intermediates/javac/debug", excludes: fileFilter),
|
|
|
|
//fileTree(dir: "$project.rootDir/app/build/tmp/kotlin-classes/debug", excludes: fileFilter),
|
2021-09-16 22:29:25 +02:00
|
|
|
fileTree(dir: "$project.rootDir/api/build/intermediates/javac/debug", excludes: fileFilter),
|
|
|
|
fileTree(dir: "$project.rootDir/api/build/tmp/kotlin-classes/debug", excludes: fileFilter),
|
|
|
|
fileTree(dir: "$project.rootDir/db/build/tmp/kotlin-classes/debug", excludes: fileFilter),
|
|
|
|
])
|
|
|
|
def coverageSourceDirs = [
|
|
|
|
"$project.rootDir/app/src/main/java",
|
|
|
|
"$project.rootDir/api/src/main/java",
|
|
|
|
"$project.rootDir/db/src/main/java",
|
|
|
|
]
|
|
|
|
|
|
|
|
additionalSourceDirs.setFrom files(coverageSourceDirs)
|
|
|
|
sourceDirectories.setFrom files(coverageSourceDirs)
|
|
|
|
executionData.setFrom fileTree(dir: project.rootDir, includes: [
|
|
|
|
'app/jacoco.exec',
|
|
|
|
'db/jacoco.exec',
|
|
|
|
'api/jacoco.exec',
|
2021-10-04 23:15:35 +02:00
|
|
|
'app/build/outputs/code_coverage/debugAndroidTest/connected/*-coverage.ec',
|
|
|
|
'db/build/outputs/code_coverage/debugAndroidTest/connected/*-coverage.ec'
|
2021-09-16 22:29:25 +02:00
|
|
|
])
|
|
|
|
}
|