2018-05-23 21:00:55 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/plugins/checkstyle-android.gradle"
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/plugins/findbugs-android.gradle"
|
|
|
|
|
|
|
|
if (rootProject.testCoverage) {
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":mail:common")
|
|
|
|
|
|
|
|
implementation "com.jcraft:jzlib:1.0.7"
|
|
|
|
implementation "com.beetstra.jutf7:jutf7:1.0.0"
|
|
|
|
implementation "commons-io:commons-io:${versions.commonsIo}"
|
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
|
|
implementation "com.android.support:support-annotations:${versions.supportLibrary}"
|
|
|
|
|
|
|
|
testImplementation project(":mail:testing")
|
|
|
|
testImplementation "org.robolectric:robolectric:${versions.robolectric}"
|
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
|
|
|
testImplementation "org.mockito:mockito-core:${versions.mockito}"
|
|
|
|
testImplementation "com.squareup.okio:okio:${versions.okio}"
|
2018-07-08 01:27:52 +00:00
|
|
|
testImplementation "org.apache.james:apache-mime4j-core:${versions.mime4j}"
|
2018-05-23 21:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion buildConfig.compileSdk
|
|
|
|
buildToolsVersion buildConfig.buildTools
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion buildConfig.minSdk
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
testCoverageEnabled rootProject.testCoverage
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
}
|