2019-03-08 22:44:56 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":app:core")
|
|
|
|
implementation project(":mail:common")
|
2020-05-17 21:32:11 +00:00
|
|
|
implementation project(":app:autodiscovery:api")
|
2019-03-08 22:44:56 +00:00
|
|
|
|
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
|
|
|
|
|
|
testImplementation project(':app:testing')
|
|
|
|
testImplementation project(":backend:imap")
|
|
|
|
testImplementation "org.robolectric:robolectric:${versions.robolectric}"
|
2020-07-15 13:50:29 +00:00
|
|
|
testImplementation "androidx.test:core:${versions.androidxTestCore}"
|
2019-03-08 22:44:56 +00:00
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
2022-02-03 00:10:52 +00:00
|
|
|
testImplementation "org.mockito:mockito-inline:${versions.mockito}"
|
2021-04-21 23:57:38 +00:00
|
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:${versions.mockitoKotlin}"
|
2022-08-05 21:51:32 +00:00
|
|
|
testImplementation "io.insert-koin:koin-test:${versions.koin}"
|
2021-10-30 01:55:09 +00:00
|
|
|
testImplementation "io.insert-koin:koin-test-junit4:${versions.koin}"
|
2019-03-08 22:44:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-09-17 12:33:34 +00:00
|
|
|
namespace 'com.fsck.k9.autodiscovery.providersxml'
|
2019-03-08 22:44:56 +00:00
|
|
|
}
|