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 {
|
2020-11-02 01:03:33 +01:00
|
|
|
compileSdkVersion 30
|
2021-02-06 02:10:37 +01:00
|
|
|
buildToolsVersion "30.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
|
2020-11-02 01:03:33 +01:00
|
|
|
targetSdkVersion 30
|
2020-04-30 19:02:24 +02:00
|
|
|
versionCode 202
|
|
|
|
versionName '0.5.1'
|
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'
|
2021-02-06 02:10:37 +01:00
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
implementation 'com.github.hannesa2:AndroidSlidingUpPanel:4.2.2'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
|
2018-02-28 00:05:52 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2021-02-06 02:10:37 +01:00
|
|
|
implementation "androidx.media:media:1.2.1"
|
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 {
|
2021-02-06 02:10:37 +01:00
|
|
|
ext.kotlin_version = '1.4.30'
|
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
|
|
|
}
|