2023-02-23 10:13:01 +00:00
|
|
|
@Suppress("DSL_SCOPE_VIOLATION")
|
2023-01-08 02:14:00 +00:00
|
|
|
plugins {
|
2023-02-23 10:13:01 +00:00
|
|
|
id(ThunderbirdPlugins.Library.android)
|
2023-01-08 02:14:00 +00:00
|
|
|
alias(libs.plugins.kotlin.parcelize)
|
|
|
|
}
|
2018-06-21 13:12:50 +00:00
|
|
|
|
|
|
|
dependencies {
|
2023-02-23 10:13:01 +00:00
|
|
|
api(projects.mail.common)
|
|
|
|
api(projects.backend.api)
|
|
|
|
api(projects.app.htmlCleaner)
|
|
|
|
|
|
|
|
implementation(projects.plugins.openpgpApiLib.openpgpApi)
|
|
|
|
|
|
|
|
api(libs.koin.android)
|
|
|
|
|
|
|
|
api(libs.androidx.annotation)
|
|
|
|
|
|
|
|
implementation(libs.okio)
|
|
|
|
implementation(libs.commons.io)
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.work.ktx)
|
|
|
|
implementation(libs.androidx.fragment)
|
|
|
|
implementation(libs.androidx.localbroadcastmanager)
|
|
|
|
implementation(libs.jsoup)
|
|
|
|
implementation(libs.moshi)
|
|
|
|
implementation(libs.timber)
|
|
|
|
implementation(libs.mime4j.core)
|
|
|
|
implementation(libs.mime4j.dom)
|
|
|
|
|
2023-03-01 16:27:34 +00:00
|
|
|
testApi(projects.core.testing)
|
2023-02-23 10:13:01 +00:00
|
|
|
testImplementation(projects.mail.testing)
|
|
|
|
testImplementation(projects.backend.imap)
|
|
|
|
testImplementation(projects.mail.protocols.smtp)
|
|
|
|
testImplementation(projects.app.storage)
|
|
|
|
testImplementation(projects.app.testing)
|
|
|
|
|
|
|
|
testImplementation(libs.kotlin.test)
|
|
|
|
testImplementation(libs.kotlin.reflect)
|
|
|
|
testImplementation(libs.robolectric)
|
|
|
|
testImplementation(libs.androidx.test.core)
|
|
|
|
testImplementation(libs.jdom2)
|
2018-06-21 13:12:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-02-23 10:13:01 +00:00
|
|
|
namespace = "com.fsck.k9.core"
|
2022-12-07 03:16:04 +00:00
|
|
|
|
|
|
|
buildFeatures {
|
2023-02-23 10:13:01 +00:00
|
|
|
buildConfig = true
|
2022-12-07 03:16:04 +00:00
|
|
|
}
|
2018-06-21 13:12:50 +00:00
|
|
|
}
|