PixelDroid-App-Android/app/build.gradle

87 lines
3.0 KiB
Groovy
Raw Normal View History

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'
}
}
// To inline the bytecode built with JVM target 1.8 into
// bytecode that is being built with JVM target 1.6. (e.g. navArgs)
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
2020-02-28 00:36:26 +01:00
}
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'
implementation 'androidx.preference:preference:1.1.0'
2020-02-28 00:36:26 +01:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.navigation:navigation-fragment:2.0.0'
implementation 'androidx.navigation:navigation-ui:2.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.0.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.0.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/**/*.*']
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'
])
}