2016-12-18 12:41:30 -05:00
|
|
|
apply plugin: 'com.android.application'
|
2017-06-03 16:16:19 -04:00
|
|
|
apply plugin: 'kotlin-android'
|
2016-12-18 12:41:30 -05:00
|
|
|
|
|
|
|
android {
|
2022-03-31 21:59:05 -04:00
|
|
|
compileSdkVersion 31
|
|
|
|
buildToolsVersion "31.0.0"
|
2017-06-03 16:16:19 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.nullsum.audinaut"
|
2018-12-03 19:46:04 -05:00
|
|
|
minSdkVersion 21
|
2020-11-01 19:03:33 -05:00
|
|
|
targetSdkVersion 30
|
2020-04-30 13:02:24 -04:00
|
|
|
versionCode 202
|
|
|
|
versionName '0.5.1'
|
2017-06-03 16:16:19 -04:00
|
|
|
setProperty("archivesBaseName", "Audinaut $versionName")
|
|
|
|
}
|
|
|
|
|
2018-03-24 20:44:39 -04:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2017-06-03 16:16:19 -04:00
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
2016-12-18 12:41:30 -05:00
|
|
|
warning 'InvalidPackage'
|
2017-06-03 16:16:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
|
|
}
|
2016-12-18 12:41:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-03-24 16:13:56 -04:00
|
|
|
implementation 'com.esotericsoftware:kryo:4.0.2'
|
2022-03-31 21:59:05 -04:00
|
|
|
implementation 'com.google.android.material:material:1.5.0'
|
2022-03-31 22:05:16 -04:00
|
|
|
implementation 'com.github.hannesa2:AndroidSlidingUpPanel:4.4.1'
|
2022-03-31 21:59:05 -04:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
|
2018-02-27 18:05:52 -05:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2022-03-31 21:59:05 -04:00
|
|
|
implementation "androidx.media:media:1.5.0"
|
2020-01-11 02:22:27 -05:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2017-06-03 16:16:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
buildscript {
|
2022-03-31 21:59:05 -04:00
|
|
|
ext.kotlin_version = '1.6.0'
|
2017-06-03 16:16:19 -04: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 12:41:30 -05:00
|
|
|
}
|