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'
|
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
|
|
|
|
|
2015-10-18 15:27:53 +00:00
|
|
|
|
versionCode 77
|
|
|
|
|
versionName "0.9-beta2"
|
2015-10-11 23:56:28 +00:00
|
|
|
|
|
|
|
|
|
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 {
|
2015-05-27 08:48:27 +00:00
|
|
|
|
compile 'dnsjava:dnsjava:2.1.7'
|
2015-10-15 13:36:55 +00:00
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.4'
|
2015-10-14 11:38:18 +00:00
|
|
|
|
provided 'org.projectlombok:lombok:1.16.6'
|
|
|
|
|
compile('org.slf4j:slf4j-android:1.7.12')
|
2015-10-10 00:15:01 +00:00
|
|
|
|
|
|
|
|
|
compile project(':dav4android')
|
2015-10-14 16:19:59 +00:00
|
|
|
|
compile project(':ical4android')
|
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
|
|
|
|
}
|