25 lines
1 KiB
Groovy
25 lines
1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
dependencies {
|
|
implementation project(":app:core")
|
|
implementation project(":mail:common")
|
|
implementation project(":app:autodiscovery:api")
|
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
|
|
testImplementation project(':app:testing')
|
|
testImplementation project(":backend:imap")
|
|
testImplementation "org.robolectric:robolectric:${versions.robolectric}"
|
|
testImplementation "androidx.test:core:${versions.androidxTestCore}"
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
|
testImplementation "org.mockito:mockito-inline:${versions.mockito}"
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:${versions.mockitoKotlin}"
|
|
testImplementation "io.insert-koin:koin-test:${versions.koin}"
|
|
testImplementation "io.insert-koin:koin-test-junit4:${versions.koin}"
|
|
}
|
|
|
|
android {
|
|
namespace 'com.fsck.k9.autodiscovery.providersxml'
|
|
}
|