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 {
|
2015-10-10 00:15:01 +00:00
|
|
|
|
compileSdkVersion 23
|
|
|
|
|
buildToolsVersion '23.0.1'
|
|
|
|
|
useLibrary 'org.apache.http.legacy'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "at.bitfire.davdroid"
|
|
|
|
|
minSdkVersion 14
|
2015-10-10 00:15:01 +00:00
|
|
|
|
targetSdkVersion 23
|
2015-10-11 23:56:28 +00:00
|
|
|
|
|
|
|
|
|
versionCode 73
|
|
|
|
|
versionName "0.9-alpha1"
|
|
|
|
|
|
|
|
|
|
buildConfigField "java.util.Date", "buildTime", "new java.util.Date()"
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2015-07-06 21:48:35 +00:00
|
|
|
|
disable 'ExtraTranslation'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
packagingOptions {
|
2015-06-14 17:24:40 +00:00
|
|
|
|
exclude 'LICENSE'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
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
|
2015-06-14 17:24:40 +00:00
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.4'
|
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
|
2015-08-25 19:18:29 +00:00
|
|
|
|
provided 'org.projectlombok:lombok:1.16.6'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// ical4j for parsing/generating iCalendars
|
2015-08-31 14:31:12 +00:00
|
|
|
|
compile('org.mnode.ical4j:ical4j:2.0-beta1') { // update ICAL_PRODID in Constants too!
|
2015-06-14 17:24:40 +00:00
|
|
|
|
// we don't need content builders, see https://github.com/ical4j/ical4j/wiki/Groovy
|
|
|
|
|
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
|
|
|
|
|
}
|
2015-07-06 21:48:35 +00:00
|
|
|
|
compile('org.slf4j:slf4j-android:1.7.12') // slf4j is used by ical4j
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// dnsjava for querying SRV/TXT records
|
2015-05-27 08:48:27 +00:00
|
|
|
|
compile 'dnsjava:dnsjava:2.1.7'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// HttpClient 4.3, Android flavour for WebDAV operations
|
2015-10-10 00:15:01 +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'
|
|
|
|
|
}
|
2015-10-10 00:15:01 +00:00
|
|
|
|
|
|
|
|
|
compile project(':dav4android')
|
2015-10-10 21:30:38 +00:00
|
|
|
|
compile project(':vcard4android')
|
2015-10-13 00:34:24 +00:00
|
|
|
|
|
|
|
|
|
compile project(':MemorizingTrustManager')
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|