1
0
mirror of https://github.com/nvllsvm/Audinaut synced 2025-01-31 07:54:47 +01:00

53 lines
1.4 KiB
Groovy
Raw Normal View History

2016-12-18 12:41:30 -05:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
2016-12-18 12:41:30 -05:00
android {
2019-12-21 11:41:30 -05:00
compileSdkVersion 29
2020-03-13 11:30:59 -04:00
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "net.nullsum.audinaut"
2018-12-03 19:46:04 -05:00
minSdkVersion 21
2019-12-21 11:41:30 -05:00
targetSdkVersion 29
2020-01-15 15:52:48 -05:00
versionCode 201
versionName '0.5.0'
setProperty("archivesBaseName", "Audinaut $versionName")
}
2018-03-24 20:44:39 -04:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
checkReleaseBuilds false
2016-12-18 12:41:30 -05:00
warning 'InvalidPackage'
}
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'
2019-08-24 14:24:07 -04:00
implementation 'com.google.android.material:material:1.0.0'
2019-12-21 11:41:30 -05:00
implementation 'com.github.hannesa2:AndroidSlidingUpPanel:4.1.0'
2020-03-13 11:30:59 -04:00
implementation 'com.squareup.okhttp3:okhttp:4.4.1'
2018-02-27 18:05:52 -05:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "androidx.media:media:1.1.0"
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}
buildscript {
2019-12-21 11:41:30 -05:00
ext.kotlin_version = '1.3.61'
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
}