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

47 lines
1.3 KiB
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 {
compile fileTree(include: ['*.jar'], dir: 'libs')
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:support-v4:23.4.+'
compile 'com.android.support:appcompat-v7:23.4.+'
compile 'com.android.support:mediarouter-v7:23.4.+'
compile 'com.android.support:recyclerview-v7:23.4.+'
compile 'com.android.support:design:23.4.+'
compile 'com.sothree.slidinguppanel:library:3.0.0'
compile group: 'org.eclipse.jetty', name: 'jetty-server', version:'8.1.16.v20140903'
compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version:'8.1.16.v20140903'
compile group: 'org.eclipse.jetty', name: 'jetty-client', version:'8.1.16.v20140903'
}