1
0
mirror of https://github.com/etesync/android synced 2024-12-24 15:38:09 +00:00
etesync-android/app/build.gradle

101 lines
3.1 KiB
Groovy
Raw Normal View History

/*
2016-10-21 17:52:55 +00:00
* Copyright (c) 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 {
2016-12-30 01:23:45 +00:00
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "at.bitfire.davdroid"
2016-12-23 14:49:53 +00:00
minSdkVersion 15
2016-12-30 01:23:45 +00:00
targetSdkVersion 25
2016-12-23 14:49:53 +00:00
versionCode 130
buildConfigField "long", "buildTime", System.currentTimeMillis() + "L"
buildConfigField "boolean", "customCerts", "true"
}
2016-06-23 21:47:40 +00:00
productFlavors {
standard {
2016-12-23 14:49:53 +00:00
versionName "1.3.5-ose"
2016-06-23 21:47:40 +00:00
}
}
buildTypes {
debug {
minifyEnabled false
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
lintOptions {
2016-03-24 16:43:35 +00:00
disable 'GoogleAppIndexingWarning' // we don't need Google indexing, thanks
disable 'GradleDependency'
disable 'GradleDynamicVersion'
disable 'IconColors'
disable 'IconLauncherShape'
disable 'IconMissingDensityFolder'
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
disable 'RtlEnabled'
2016-03-24 16:43:35 +00:00
disable 'RtlHardcoded'
disable 'Typos'
2016-12-30 01:23:45 +00:00
disable "RestrictedApi" // https://code.google.com/p/android/issues/detail?id=230387
}
packagingOptions {
exclude 'LICENSE'
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"
}
}
dependencies {
compile project(':cert4android')
compile project(':dav4android')
compile project(':ical4android')
compile project(':vcard4android')
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'
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'
compile 'org.apache.commons:commons-collections4:4.1'
2016-12-30 01:23:45 +00:00
provided 'org.projectlombok:lombok:1.16.12'
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
testCompile 'junit:junit:4.12'
2016-12-02 14:00:46 +00:00
testCompile 'com.squareup.okhttp3:mockwebserver:3.5.0'
}