2018-01-29 01:50:37 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2018-09-12 07:55:15 +02:00
|
|
|
compileSdkVersion target_sdk_version
|
2018-01-29 01:50:37 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-09-12 07:55:15 +02:00
|
|
|
targetSdkVersion target_sdk_version
|
|
|
|
minSdkVersion min_sdk_version
|
2018-01-29 01:50:37 +01:00
|
|
|
|
|
|
|
applicationId "jp.juggler.apng.sample"
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
2019-02-15 02:51:22 +01:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-01-29 01:50:37 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2019-02-15 04:17:31 +01:00
|
|
|
minifyEnabled false
|
2018-01-29 01:50:37 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-13 01:07:11 +02:00
|
|
|
packagingOptions {
|
2019-04-13 01:12:17 +02:00
|
|
|
// https://github.com/Kotlin/kotlinx.coroutines/issues/1064
|
2019-04-13 01:07:11 +02:00
|
|
|
pickFirst("META-INF/atomicfu.kotlin_module")
|
|
|
|
}
|
2018-01-29 01:50:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
|
|
|
|
implementation project(':apng_android')
|
|
|
|
|
2019-02-15 02:51:22 +01:00
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
2018-01-29 01:50:37 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-09-12 17:13:00 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
|
2018-01-29 01:50:37 +01:00
|
|
|
|
2019-07-12 06:38:19 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2018-09-14 18:36:05 +02:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_coroutines_version"
|
2018-01-29 01:50:37 +01:00
|
|
|
}
|