0
0
mirror of https://github.com/etesync/android.git synced 2024-09-20 13:08:51 +02:00
etesync-android/app/build.gradle

76 lines
2.0 KiB
Groovy
Raw Normal View History

/*
2016-01-03 01:47:32 +01:00
* Copyright (c) 2013 2016 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
*/
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
applicationId "at.bitfire.davdroid"
minSdkVersion 14
targetSdkVersion 22
2016-01-03 01:47:32 +01:00
versionCode 87
versionName "0.9.1.3"
buildConfigField "long", "buildTime", System.currentTimeMillis() + "L"
}
buildTypes {
debug {
minifyEnabled false
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
lintOptions {
disable 'IconColors'
disable 'IconLauncherShape'
disable 'IconMissingDensityFolder'
disable 'InconsistentLayout'
disable 'MergeRootFrame'
disable 'MissingTranslation'
disable 'OldTargetApi'
disable 'RtlEnabled'
disable 'Typos'
}
packagingOptions {
exclude 'LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}
configurations.all {
exclude module: 'commons-logging' // undocumented part of Android
}
dependencies {
provided 'org.projectlombok:lombok:1.16.6'
compile project(':dav4android')
compile project(':ical4android')
compile project(':vcard4android')
2016-01-15 01:07:56 +01:00
compile 'com.android.support:appcompat-v7:23.+'
compile 'com.android.support:cardview-v7:23.+'
compile 'com.android.support:design:23.+'
compile project(':MemorizingTrustManager')
2016-01-16 21:34:41 +01:00
androidTestCompile 'com.squareup.okhttp3:mockwebserver:3.0.1+'
2016-01-15 01:07:56 +01:00
compile 'dnsjava:dnsjava:2.1.7'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.slf4j:slf4j-android:1.7.13'
}