Kapng-Android/apng_library/build.gradle

44 lines
1.1 KiB
Groovy
Raw Normal View History

2018-09-27 20:05:08 +00:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
2019-05-17 16:17:47 +00:00
apply plugin: 'kotlin-android-extensions'
2018-09-27 20:05:08 +00:00
android {
compileSdkVersion 29
2018-09-27 20:05:08 +00:00
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
2018-09-27 20:05:08 +00:00
versionCode 1
2020-04-20 14:44:22 +00:00
versionName "1.0.10-beta2"
2018-09-27 20:05:08 +00:00
2019-05-17 16:48:32 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-09-27 20:05:08 +00:00
}
2018-09-27 20:05:08 +00:00
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-09-27 20:05:08 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
// https://github.com/Kotlin/kotlinx.coroutines/issues/2049
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5'
2019-05-17 16:17:47 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
2018-09-27 20:05:08 +00:00
testImplementation 'junit:junit:4.12'
2019-06-11 18:46:29 +00:00
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2018-09-27 20:05:08 +00:00
}
2018-09-27 20:05:08 +00:00
repositories {
mavenCentral()
2019-06-12 09:32:24 +00:00
}