2016-12-18 18:41:30 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-03-05 17:24:51 +01:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.2"
|
2016-12-18 18:41:30 +01:00
|
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
|
|
|
|
defaultConfig {
|
2017-01-09 08:01:12 +01:00
|
|
|
applicationId "net.nullsum.audinaut"
|
2016-12-18 18:41:30 +01:00
|
|
|
minSdkVersion 19
|
2017-03-05 17:24:51 +01:00
|
|
|
targetSdkVersion 25
|
2017-03-05 01:27:32 +01:00
|
|
|
versionCode 188
|
|
|
|
versionName '0.1.2'
|
2016-12-18 18:41:30 +01: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 06:36:24 +01:00
|
|
|
compile 'com.esotericsoftware:kryo:4.0.0'
|
2017-03-05 17:24:51 +01:00
|
|
|
compile 'com.android.support:design:25.2.0'
|
2017-03-05 08:45:05 +01:00
|
|
|
compile 'com.sothree.slidinguppanel:library:3.3.1'
|
2016-12-18 18:41:30 +01:00
|
|
|
}
|