1
0
mirror of https://github.com/nvllsvm/Audinaut synced 2025-01-25 13:28:48 +01:00

39 lines
771 B
Groovy
Raw Normal View History

2016-12-18 12:41:30 -05:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
defaultConfig {
2017-01-09 02:01:12 -05:00
applicationId "net.nullsum.audinaut"
2016-12-18 12:41:30 -05:00
minSdkVersion 19
targetSdkVersion 23
2017-03-04 19:27:32 -05:00
versionCode 188
versionName '0.1.2'
2016-12-18 12:41:30 -05:00
setProperty("archivesBaseName", "Audinaut $versionName")
resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv"
}
packagingOptions {
exclude 'META-INF/beans.xml'
}
lintOptions {
checkReleaseBuilds false
warning 'InvalidPackage'
}
signingConfigs {
debug {
storeFile file('../debug.keystore')
}
}
}
dependencies {
2017-02-27 00:36:24 -05:00
compile 'com.esotericsoftware:kryo:4.0.0'
2016-12-18 12:41:30 -05:00
compile 'com.android.support:design:23.4.+'
2017-03-05 02:45:05 -05:00
compile 'com.sothree.slidinguppanel:library:3.3.1'
2016-12-18 12:41:30 -05:00
}