thunderbird-android/app/autodiscovery/providersxml/build.gradle

26 lines
1 KiB
Groovy
Raw Normal View History

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}"
2020-07-15 13:50:29 +00:00
testImplementation "androidx.test:core:${versions.androidxTestCore}"
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}"
}
android {
namespace 'com.fsck.k9.autodiscovery.providersxml'
}