|
@@ -3,6 +3,8 @@ apply plugin: 'kotlin-android'
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
|
|
+apply from: "$project.rootDir/jacoco.gradle"
|
|
|
|
|
+
|
|
|
android {
|
|
android {
|
|
|
compileSdkVersion rootProject.compileSdkVersion
|
|
compileSdkVersion rootProject.compileSdkVersion
|
|
|
buildToolsVersion "29.0.3"
|
|
buildToolsVersion "29.0.3"
|
|
@@ -18,6 +20,9 @@ android {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
buildTypes {
|
|
|
|
|
+ debug {
|
|
|
|
|
+ testCoverageEnabled true
|
|
|
|
|
+ }
|
|
|
release {
|
|
release {
|
|
|
minifyEnabled false
|
|
minifyEnabled false
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
@@ -69,5 +74,4 @@ dependencies {
|
|
|
androidTestImplementation espressoCore
|
|
androidTestImplementation espressoCore
|
|
|
androidTestImplementation androidXFragmentTest
|
|
androidTestImplementation androidXFragmentTest
|
|
|
kaptAndroidTest daggerCompiler
|
|
kaptAndroidTest daggerCompiler
|
|
|
-
|
|
|
|
|
}
|
|
}
|