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 {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-01-29 14:27:43 +01:00
|
|
|
kotlin {
|
|
|
|
experimental {
|
|
|
|
coroutines 'enable'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-02-15 02:51:22 +01:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
|
2018-01-29 01:50:37 +01:00
|
|
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$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 14:27:43 +01:00
|
|
|
|
2018-01-29 01:50:37 +01:00
|
|
|
}
|