2015-03-08 22:30:03 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 – 2015 Ricki Hirner (bitfire web engineering).
|
|
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
|
* are made available under the terms of the GNU Public License v3.0
|
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
2014-12-20 19:21:46 +00:00
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 21
|
2015-03-08 22:30:03 +00:00
|
|
|
|
buildToolsVersion '21.1.2'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "at.bitfire.davdroid"
|
|
|
|
|
minSdkVersion 14
|
|
|
|
|
targetSdkVersion 21
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
2014-12-20 22:33:31 +00:00
|
|
|
|
debug {
|
2014-12-27 21:41:23 +00:00
|
|
|
|
minifyEnabled false
|
2014-12-20 22:33:31 +00:00
|
|
|
|
}
|
2014-12-20 19:21:46 +00:00
|
|
|
|
release {
|
2014-12-20 22:33:31 +00:00
|
|
|
|
minifyEnabled true
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-08 22:30:03 +00:00
|
|
|
|
lintOptions {
|
|
|
|
|
abortOnError false
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-21 09:01:41 +00:00
|
|
|
|
configurations.all {
|
|
|
|
|
exclude module: 'commons-logging' // undocumented part of Android
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-20 19:21:46 +00:00
|
|
|
|
dependencies {
|
|
|
|
|
// Apache Commons
|
|
|
|
|
compile 'commons-lang:commons-lang:2.6'
|
2015-01-18 16:04:32 +00:00
|
|
|
|
compile 'commons-io:commons-io:2.4'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// Lombok for useful @helpers
|
2014-12-20 22:33:31 +00:00
|
|
|
|
provided 'org.projectlombok:lombok:1.14.8'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// ical4j for parsing/generating iCalendars
|
|
|
|
|
compile 'org.mnode.ical4j:ical4j:1.0.6'
|
|
|
|
|
// ez-vcard for parsing/generating VCards
|
|
|
|
|
compile('com.googlecode.ez-vcard:ez-vcard:0.9.6') {
|
|
|
|
|
// hCard functionality not needed
|
|
|
|
|
exclude group: 'org.jsoup', module: 'jsoup'
|
|
|
|
|
exclude group: 'org.freemarker', module: 'freemarker'
|
|
|
|
|
// jCard functionality not needed
|
|
|
|
|
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
|
|
|
|
|
}
|
|
|
|
|
// dnsjava for querying SRV/TXT records
|
|
|
|
|
compile 'dnsjava:dnsjava:2.1.6'
|
|
|
|
|
// HttpClient 4.3, Android flavour for WebDAV operations
|
2015-04-30 12:37:28 +00:00
|
|
|
|
//compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
|
|
|
|
|
compile project(':lib:httpclient-android')
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// SimpleXML for parsing and generating WebDAV messages
|
|
|
|
|
compile('org.simpleframework:simple-xml:2.7.1') {
|
|
|
|
|
exclude group: 'stax', module: 'stax-api'
|
|
|
|
|
exclude group: 'xpp3', module: 'xpp3'
|
|
|
|
|
}
|
|
|
|
|
}
|