2016-12-18 18:41:30 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2017-06-03 22:16:19 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
2016-12-18 18:41:30 +01:00
|
|
|
|
|
|
|
android {
|
2019-01-19 03:38:32 +01:00
|
|
|
compileSdkVersion 28
|
2018-12-04 01:45:13 +01:00
|
|
|
buildToolsVersion "28.0.3"
|
2017-06-03 22:16:19 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.nullsum.audinaut"
|
2018-12-04 01:46:04 +01:00
|
|
|
minSdkVersion 21
|
2019-01-19 03:38:32 +01:00
|
|
|
targetSdkVersion 28
|
2018-07-05 16:57:55 +02:00
|
|
|
versionCode 197
|
|
|
|
versionName '0.3.2'
|
2017-06-03 22:16:19 +02:00
|
|
|
setProperty("archivesBaseName", "Audinaut $versionName")
|
|
|
|
resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv"
|
|
|
|
}
|
|
|
|
|
2018-03-25 01:44:39 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2017-06-03 22:16:19 +02:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/beans.xml'
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
2016-12-18 18:41:30 +01:00
|
|
|
warning 'InvalidPackage'
|
2017-06-03 22:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-12-18 18:41:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-24 21:13:56 +01:00
|
|
|
implementation 'com.esotericsoftware:kryo:4.0.2'
|
2018-02-28 00:05:52 +01:00
|
|
|
implementation "com.android.support:design:$android_support_version"
|
|
|
|
implementation 'com.sothree.slidinguppanel:library:3.3.1'
|
2019-01-19 03:38:32 +01:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
|
2018-02-28 00:05:52 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2017-06-03 22:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2018-12-04 01:43:48 +01:00
|
|
|
ext.kotlin_version = '1.3.10'
|
|
|
|
ext.android_support_version = '27.1.1'
|
2017-06-03 22:16:19 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
|
|
|
}
|
2016-12-18 18:41:30 +01:00
|
|
|
}
|