Kapng-Android/apng_library/build.gradle

39 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 {
2019-05-17 16:17:47 +00:00
compileSdkVersion 28
2018-09-27 20:05:08 +00:00
defaultConfig {
minSdkVersion 21
2019-05-17 16:17:47 +00:00
targetSdkVersion 28
2018-09-27 20:05:08 +00:00
versionCode 1
2020-02-01 14:09:35 +00:00
versionName "1.0.10-beta1"
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
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
2019-10-05 18:10:46 +00:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2019-05-17 16:17:47 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
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'
2019-05-17 16:17:47 +00:00
2019-10-05 18:10:46 +00:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.2'
2018-09-27 20:05:08 +00:00
}
repositories {
mavenCentral()
2019-06-12 09:32:24 +00:00
}