Kapng-Android/apng_library/build.gradle

46 lines
975 B
Groovy
Raw Normal View History

2018-09-27 20:05:08 +00:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
2021-06-22 11:03:14 +00:00
2018-09-27 20:05:08 +00:00
android {
2023-05-17 05:17:33 +00:00
compileSdkVersion 33
2018-09-27 20:05:08 +00:00
defaultConfig {
2020-09-16 09:40:55 +00:00
minSdkVersion 19
2023-05-17 05:17:33 +00:00
targetSdkVersion 33
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
}
2023-05-17 05:17:33 +00:00
kotlinOptions {
jvmTarget = '1.8'
}
namespace 'oupson.apng'
2018-09-27 20:05:08 +00:00
}
dependencies {
2023-05-17 05:28:13 +00:00
implementation libs.kotlinx.coroutines.android
2023-05-17 05:28:13 +00:00
implementation libs.appcompat
2021-06-22 11:03:14 +00:00
testImplementation 'junit:junit:4.13.2'
2023-05-17 05:17:33 +00:00
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
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
}