2020-02-28 00:36:26 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2020-02-28 17:08:54 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'jacoco'
|
2020-02-28 00:36:26 +01:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
2020-02-28 17:59:54 +01:00
|
|
|
buildToolsVersion "29.0.3"
|
2020-02-28 00:36:26 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-02-28 17:08:54 +01:00
|
|
|
applicationId "com.h.pixeldroid"
|
|
|
|
minSdkVersion 23
|
2020-02-28 00:36:26 +01:00
|
|
|
targetSdkVersion 29
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
2020-02-28 17:08:54 +01:00
|
|
|
debug {
|
|
|
|
testCoverageEnabled true
|
|
|
|
}
|
2020-02-28 00:36:26 +01:00
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-02-28 17:08:54 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2020-02-28 00:36:26 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2020-02-28 17:08:54 +01:00
|
|
|
implementation 'androidx.core:core-ktx:1.2.0'
|
2020-02-28 00:36:26 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2020-02-28 17:08:54 +01:00
|
|
|
testImplementation 'junit:junit:4.13'
|
2020-02-28 00:36:26 +01:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
}
|
2020-02-28 17:08:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
tasks.withType(Test) {
|
|
|
|
jacoco.includeNoLocationClasses = true
|
|
|
|
jacoco.excludes = ['jdk.internal.*']
|
|
|
|
}
|
|
|
|
|
|
|
|
task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'createDebugCoverageReport']) {
|
|
|
|
|
|
|
|
reports {
|
|
|
|
xml.enabled = true
|
|
|
|
html.enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
def fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', '**/*Test*.*', 'android/**/*.*']
|
|
|
|
def debugTree = fileTree(dir: "$project.buildDir/intermediates/classes/debug", excludes: fileFilter)
|
2020-02-29 14:09:20 +01:00
|
|
|
def kotlinDebugTree = fileTree(dir: "$project.buildDir/tmp/kotlin-classes/debug", excludes: fileFilter)
|
2020-02-28 17:08:54 +01:00
|
|
|
def javaMainSrc = "$project.projectDir/src/main/java"
|
|
|
|
def kotlinMainSrc = "$project.projectDir/src/main/kotlin"
|
|
|
|
sourceDirectories = files([javaMainSrc, kotlinMainSrc])
|
|
|
|
classDirectories = files([debugTree, kotlinDebugTree])
|
|
|
|
executionData = fileTree(dir: project.buildDir, includes: [
|
|
|
|
'jacoco/testDebugUnitTest.exec', 'outputs/code-coverage/connected/*coverage.ec'
|
|
|
|
])
|
|
|
|
}
|