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-03-03 20:37:06 +01:00
|
|
|
compileOptions {
|
2020-03-04 18:04:55 +01:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
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-03-04 18:04:55 +01:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:4.4.0"
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
|
|
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.7.1'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.16'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
|
|
testImplementation "com.github.tomakehurst:wiremock-jre8:2.26.2"
|
|
|
|
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
|
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/**/*.*']
|
2020-02-29 14:09:20 +01:00
|
|
|
def kotlinDebugTree = fileTree(dir: "$project.buildDir/tmp/kotlin-classes/debug", excludes: fileFilter)
|
2020-03-04 18:04:55 +01:00
|
|
|
def mainSrc = "$project.projectDir/src/main/java"
|
|
|
|
sourceDirectories = files([mainSrc])
|
|
|
|
classDirectories = files([kotlinDebugTree])
|
2020-02-28 17:08:54 +01:00
|
|
|
executionData = fileTree(dir: project.buildDir, includes: [
|
2020-03-04 18:04:55 +01:00
|
|
|
'jacoco/testDebugUnitTest.exec', 'outputs/code-coverage/debugAndroidTest/connected/*coverage.ec'
|
2020-02-28 17:08:54 +01:00
|
|
|
])
|
2020-03-03 20:37:06 +01:00
|
|
|
}
|