thunderbird-android/k9mail/build.gradle

107 lines
3 KiB
Groovy
Raw Normal View History

apply plugin: 'android-sdk-manager'
apply plugin: 'com.android.application'
apply from: '../gradle/plugins/checkstyle-android.gradle'
apply from: '../gradle/plugins/findbugs-android.gradle'
2015-05-21 12:52:50 +00:00
apply plugin: 'jacoco'
repositories {
jcenter()
}
2015-12-21 02:25:54 +00:00
ext {
supportLibraryVersion = '23.1.1'
}
//noinspection GroovyAssignabilityCheck
configurations.all {
resolutionStrategy {
force "com.android.support:support-annotations:${project.supportLibraryVersion}"
}
}
dependencies {
2014-12-20 00:09:49 +00:00
compile project(':k9mail-library')
compile project(':plugins:Android-PullToRefresh:library')
compile project(':plugins:HoloColorPicker')
2014-12-22 21:36:50 +00:00
compile 'commons-io:commons-io:2.4'
2015-12-21 02:25:54 +00:00
compile "com.android.support:support-v4:${project.supportLibraryVersion}"
2015-12-21 02:05:23 +00:00
compile 'net.sourceforge.htmlcleaner:htmlcleaner:2.16'
compile 'de.cketti.library.changelog:ckchangelog:1.2.1'
2015-12-21 02:05:38 +00:00
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'org.sufficientlysecure:openpgp-api:8.0'
compile 'com.splitwise:tokenautocomplete:2.0.2'
2015-12-21 02:25:54 +00:00
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
androidTestCompile 'com.icegreen:greenmail:1.4.1'
2015-12-21 02:25:54 +00:00
testCompile 'org.robolectric:robolectric:3.0-rc3'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-all:1.10.19'
}
android {
2015-12-21 01:11:37 +00:00
compileSdkVersion rootProject.compileSdkVersion
2015-12-21 01:18:42 +00:00
buildToolsVersion rootProject.buildToolsVersion
defaultConfig {
minSdkVersion 15
2015-12-21 01:35:10 +00:00
targetSdkVersion 22
2015-01-02 22:43:46 +00:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release
}
buildTypes {
release {
if (project.hasProperty('storeFile')) {
signingConfig signingConfigs.release
}
buildConfigField "boolean", "DEVELOPER_MODE", "false"
}
debug {
applicationIdSuffix ".debug"
testCoverageEnabled rootProject.testCoverage
buildConfigField "boolean", "DEVELOPER_MODE", "true"
}
}
// Do not abort build if lint finds errors
lintOptions {
abortOnError false
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'LICENSE.txt'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
}
if (project.hasProperty('keyAlias')) {
android.signingConfigs.release.keyAlias = keyAlias
}
if (project.hasProperty('keyPassword')) {
android.signingConfigs.release.keyPassword = keyPassword
}
if (project.hasProperty('storeFile')) {
android.signingConfigs.release.storeFile = file(storeFile)
}
if (project.hasProperty('storePassword')) {
android.signingConfigs.release.storePassword = storePassword
}