mirror of
https://gitea.mayex.net/mayekkuzu/Audinaut.git
synced 2025-02-03 00:53:47 +03:00
64 lines
1.7 KiB
Groovy
64 lines
1.7 KiB
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 23
|
||
|
buildToolsVersion "23.0.3"
|
||
|
useLibrary 'org.apache.http.legacy'
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "github.nvllsvm.audinaut"
|
||
|
minSdkVersion 19
|
||
|
targetSdkVersion 23
|
||
|
versionCode 186
|
||
|
versionName '0.1.0'
|
||
|
setProperty("archivesBaseName", "Audinaut $versionName")
|
||
|
resConfigs "de", "es", "fr", "hu", "nl", "pt-rPT", "ru", "sv"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled true
|
||
|
shrinkResources true
|
||
|
proguardFiles 'proguard.cfg'
|
||
|
zipAlignEnabled true
|
||
|
}
|
||
|
fix {
|
||
|
minifyEnabled true
|
||
|
shrinkResources true
|
||
|
proguardFiles 'proguard.cfg'
|
||
|
zipAlignEnabled true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
packagingOptions {
|
||
|
exclude 'META-INF/beans.xml'
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
checkReleaseBuilds false
|
||
|
warning 'InvalidPackage'
|
||
|
}
|
||
|
|
||
|
signingConfigs {
|
||
|
debug {
|
||
|
storeFile file('../debug.keystore')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':Server Proxy')
|
||
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
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 'de.hdodenhof:circleimageview:1.2.1'
|
||
|
compile group: 'org.fourthline.cling', name: 'cling-core', version:'2.1.1'
|
||
|
compile group: 'org.fourthline.cling', name: 'cling-support', version:'2.1.1'
|
||
|
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'
|
||
|
}
|