Kapng-Android/app-test/build.gradle

65 lines
1.7 KiB
Groovy
Raw Permalink Normal View History

2018-09-27 20:05:08 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
2023-05-17 05:17:33 +00:00
compileSdkVersion 33
2018-09-27 20:05:08 +00:00
defaultConfig {
applicationId "oupson.apngcreator"
2020-09-16 09:40:55 +00:00
minSdkVersion 19
2023-05-17 05:17:33 +00:00
targetSdkVersion 33
2023-07-14 07:57:35 +00:00
versionCode 2
versionName "1.0.11"
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
// Configure only for each module that uses Java 8
// language features (either in its source code or
// through dependencies).
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2023-05-17 05:17:33 +00:00
kotlinOptions {
jvmTarget = '1.8'
}
2018-09-27 20:05:08 +00:00
buildTypes {
release {
2021-06-25 14:34:25 +00:00
minifyEnabled true
shrinkResources true
2018-09-27 20:05:08 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-09-27 20:05:08 +00:00
productFlavors {
}
2021-06-25 14:34:25 +00:00
buildFeatures {
viewBinding = true
}
2023-05-17 05:17:33 +00:00
namespace 'oupson.apngcreator'
2021-06-25 14:34:25 +00:00
2018-09-27 20:05:08 +00:00
}
2018-09-27 20:05:08 +00:00
dependencies {
2023-05-17 05:28:13 +00:00
implementation libs.kotlinx.coroutines.android
2018-10-24 11:21:27 +00:00
2023-05-17 05:28:13 +00:00
implementation libs.appcompat
2023-05-17 05:17:33 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2020-01-24 21:46:19 +00:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2023-05-17 05:17:33 +00:00
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
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'
2021-06-25 14:34:25 +00:00
implementation("io.coil-kt:coil:1.2.2")
2018-10-24 10:20:16 +00:00
implementation project(":apng_library")
// implementation fileTree(include: ['*.aar'], dir: 'libs')
// implementation 'com.github.oupson:Kapng-Android:1.0.0'
2018-09-27 20:05:08 +00:00
}