2018-06-21 13:12:50 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.android.extensions'
|
|
|
|
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/plugins/checkstyle-android.gradle"
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/plugins/findbugs-android.gradle"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
|
|
|
|
|
|
|
|
api project(":mail:common")
|
|
|
|
api project(":backend:api")
|
|
|
|
|
|
|
|
api project(':plugins:openpgp-api-lib:openpgp-api')
|
|
|
|
|
|
|
|
api "org.koin:koin-android-architecture:${versions.koin}"
|
|
|
|
|
2018-07-08 01:27:52 +00:00
|
|
|
implementation "com.squareup.okio:okio:${versions.okio}"
|
|
|
|
implementation "commons-io:commons-io:${versions.commonsIo}"
|
|
|
|
implementation "androidx.core:core-ktx:${versions.coreKtx}"
|
|
|
|
implementation "org.jsoup:jsoup:1.11.2"
|
|
|
|
implementation "com.squareup.moshi:moshi:1.2.0"
|
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
|
|
implementation "org.apache.james:apache-mime4j-core:${versions.mime4j}"
|
|
|
|
|
2018-07-01 11:39:01 +00:00
|
|
|
testImplementation project(':mail:testing')
|
2018-07-16 16:12:54 +00:00
|
|
|
testImplementation project(":backend:imap")
|
2018-07-15 17:40:28 +00:00
|
|
|
testImplementation project(":mail:protocols:smtp")
|
2018-08-27 13:49:13 +00:00
|
|
|
testImplementation project(":app:storage")
|
2018-06-21 13:12:50 +00:00
|
|
|
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.nhaarman:mockito-kotlin:${versions.mockitoKotlin}"
|
|
|
|
testImplementation "org.jdom:jdom2:2.0.6"
|
|
|
|
testImplementation "org.koin:koin-test:${versions.koin}"
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion buildConfig.compileSdk
|
|
|
|
buildToolsVersion buildConfig.buildTools
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion buildConfig.minSdk
|
|
|
|
// For Robolectric tests
|
|
|
|
targetSdkVersion 22
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
experimental {
|
|
|
|
coroutines "enable"
|
|
|
|
}
|
|
|
|
}
|