1
0
mirror of https://gitlab.shinice.net/pixeldroid/PixelDroid synced 2024-12-26 07:01:48 +01:00
PixelDroid-App-Android/app/build.gradle

80 lines
2.8 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"
compileOptions {
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'
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-03-03 21:17:53 +01:00
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions: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)
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: [
'jacoco/testDebugUnitTest.exec', 'outputs/code-coverage/debugAndroidTest/connected/*coverage.ec'
2020-02-28 17:08:54 +01:00
])
2020-03-03 21:17:53 +01:00
}