2015-03-08 22:30:03 +00:00
|
|
|
|
/*
|
2016-01-03 00:47:32 +00:00
|
|
|
|
* Copyright (c) 2013 – 2016 Ricki Hirner (bitfire web engineering).
|
2015-03-08 22:30:03 +00:00
|
|
|
|
* 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
|
2015-11-07 13:03:22 +00:00
|
|
|
|
buildToolsVersion '23.0.2'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "at.bitfire.davdroid"
|
|
|
|
|
minSdkVersion 14
|
2015-10-20 10:56:48 +00:00
|
|
|
|
targetSdkVersion 22
|
2015-10-11 23:56:28 +00:00
|
|
|
|
|
2016-03-24 19:51:09 +00:00
|
|
|
|
versionCode 89
|
|
|
|
|
versionName "1.0-rc1"
|
2015-10-11 23:56:28 +00:00
|
|
|
|
|
2015-11-27 13:04:24 +00:00
|
|
|
|
buildConfigField "long", "buildTime", System.currentTimeMillis() + "L"
|
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
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-15 23:53:05 +00:00
|
|
|
|
|
2015-03-08 22:30:03 +00:00
|
|
|
|
lintOptions {
|
2016-03-24 16:43:35 +00:00
|
|
|
|
disable 'GoogleAppIndexingWarning' // we don't need Google indexing, thanks
|
|
|
|
|
disable 'GradleDependency'
|
|
|
|
|
disable 'GradleDynamicVersion'
|
2015-10-18 22:04:58 +00:00
|
|
|
|
disable 'IconColors'
|
|
|
|
|
disable 'IconLauncherShape'
|
|
|
|
|
disable 'IconMissingDensityFolder'
|
|
|
|
|
disable 'MissingTranslation'
|
2016-03-24 16:43:35 +00:00
|
|
|
|
disable 'OldTargetApi' // Android 6 permission model not implemented yet
|
|
|
|
|
disable 'Recycle' // doesn't understand Lombok's @Cleanup
|
2015-10-18 22:04:58 +00:00
|
|
|
|
disable 'RtlEnabled'
|
2016-03-24 16:43:35 +00:00
|
|
|
|
disable 'RtlHardcoded'
|
2015-10-18 22:04:58 +00:00
|
|
|
|
disable 'Typos'
|
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-10-14 11:38:18 +00:00
|
|
|
|
provided 'org.projectlombok:lombok:1.16.6'
|
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
|
|
|
|
|
2016-01-15 00:07:56 +00:00
|
|
|
|
compile 'com.android.support:appcompat-v7:23.+'
|
|
|
|
|
compile 'com.android.support:cardview-v7:23.+'
|
|
|
|
|
compile 'com.android.support:design:23.+'
|
2016-01-23 17:44:40 +00:00
|
|
|
|
compile 'com.android.support:preference-v7:23.+'
|
2016-01-15 00:07:56 +00:00
|
|
|
|
|
2016-02-23 17:42:50 +00:00
|
|
|
|
compile 'com.github.yukuku:ambilwarna:2.0.1'
|
2015-10-13 00:34:24 +00:00
|
|
|
|
compile project(':MemorizingTrustManager')
|
2015-10-19 13:09:42 +00:00
|
|
|
|
|
2016-03-16 17:23:52 +00:00
|
|
|
|
androidTestCompile 'com.squareup.okhttp3:mockwebserver:3.2.0'
|
2016-01-15 00:07:56 +00:00
|
|
|
|
compile 'dnsjava:dnsjava:2.1.7'
|
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.4'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|