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-12-21 17:41:30 +01:00
|
|
|
compileSdkVersion 29
|
2020-03-13 16:30:59 +01:00
|
|
|
buildToolsVersion "29.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-12-21 17:41:30 +01:00
|
|
|
targetSdkVersion 29
|
2020-01-15 21:52:48 +01:00
|
|
|
versionCode 201
|
|
|
|
versionName '0.5.0'
|
2017-06-03 22:16:19 +02:00
|
|
|
setProperty("archivesBaseName", "Audinaut $versionName")
|
|
|
|
}
|
|
|
|
|
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
|
|
|
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'
|
2019-08-24 20:24:07 +02:00
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
2019-12-21 17:41:30 +01:00
|
|
|
implementation 'com.github.hannesa2:AndroidSlidingUpPanel:4.1.0'
|
2020-03-13 16:30:59 +01:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.4.1'
|
2018-02-28 00:05:52 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2020-01-11 07:55:12 +01:00
|
|
|
implementation "androidx.media:media:1.1.0"
|
2020-01-11 08:22:27 +01:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2017-06-03 22:16:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2019-12-21 17:41:30 +01:00
|
|
|
ext.kotlin_version = '1.3.61'
|
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
|
|
|
}
|