2015-03-08 22:30:03 +00:00
|
|
|
/*
|
2016-10-21 17:52:55 +00:00
|
|
|
* Copyright (c) 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 {
|
2016-12-30 01:23:45 +00:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion '25.0.2'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "at.bitfire.davdroid"
|
2016-12-23 14:49:53 +00:00
|
|
|
|
2016-10-04 14:12:44 +00:00
|
|
|
minSdkVersion 15
|
2016-12-30 01:23:45 +00:00
|
|
|
targetSdkVersion 25
|
2015-10-11 23:56:28 +00:00
|
|
|
|
2016-12-23 14:49:53 +00:00
|
|
|
versionCode 130
|
2015-10-11 23:56:28 +00:00
|
|
|
|
2015-11-27 13:04:24 +00:00
|
|
|
buildConfigField "long", "buildTime", System.currentTimeMillis() + "L"
|
2016-09-01 20:03:38 +00:00
|
|
|
buildConfigField "boolean", "customCerts", "true"
|
2014-12-20 19:21:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 21:47:40 +00:00
|
|
|
productFlavors {
|
2016-07-01 20:10:20 +00:00
|
|
|
standard {
|
2016-12-23 14:49:53 +00:00
|
|
|
versionName "1.3.5-ose"
|
2016-06-23 21:47:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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'
|
2016-10-12 15:03:17 +00:00
|
|
|
disable 'ImpliedQuantity', 'MissingQuantity'
|
|
|
|
disable 'MissingTranslation', 'ExtraTranslation' // translations from Transifex are not always up to date
|
2016-03-24 16:43:35 +00:00
|
|
|
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'
|
2016-12-30 01:23:45 +00:00
|
|
|
disable "RestrictedApi" // https://code.google.com/p/android/issues/detail?id=230387
|
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'
|
|
|
|
}
|
2016-10-10 18:42:29 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
2014-12-20 19:21:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-09-18 14:38:41 +00:00
|
|
|
compile project(':cert4android')
|
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-12-30 01:23:45 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:25.+'
|
|
|
|
compile 'com.android.support:cardview-v7:25.+'
|
|
|
|
compile 'com.android.support:design:25.+'
|
|
|
|
compile 'com.android.support:preference-v14:25.+'
|
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-19 13:09:42 +00:00
|
|
|
|
2016-12-02 14:00:46 +00:00
|
|
|
compile 'com.squareup.okhttp3:logging-interceptor:3.5.0'
|
2016-01-15 00:07:56 +00:00
|
|
|
compile 'dnsjava:dnsjava:2.1.7'
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.4'
|
2016-04-19 19:56:05 +00:00
|
|
|
compile 'org.apache.commons:commons-collections4:4.1'
|
2016-12-30 01:23:45 +00:00
|
|
|
provided 'org.projectlombok:lombok:1.16.12'
|
2016-10-07 10:22:54 +00:00
|
|
|
|
2016-04-05 21:25:18 +00:00
|
|
|
// for tests
|
2016-10-10 18:42:29 +00:00
|
|
|
androidTestCompile('com.android.support.test:runner:0.5') {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
}
|
|
|
|
androidTestCompile('com.android.support.test:rules:0.5') {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
}
|
|
|
|
androidTestCompile 'junit:junit:4.12'
|
2016-12-02 14:00:46 +00:00
|
|
|
androidTestCompile 'com.squareup.okhttp3:mockwebserver:3.5.0'
|
2016-10-10 18:42:29 +00:00
|
|
|
|
2016-04-26 11:10:42 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
2016-12-02 14:00:46 +00:00
|
|
|
testCompile 'com.squareup.okhttp3:mockwebserver:3.5.0'
|
2014-12-20 19:21:46 +00:00
|
|
|
}
|