22 lines
598 B
Kotlin
22 lines
598 B
Kotlin
plugins {
|
|
id(ThunderbirdPlugins.Library.androidCompose)
|
|
}
|
|
|
|
android {
|
|
namespace = "app.k9mail.feature.account.server.settings"
|
|
resourcePrefix = "account_server_settings_"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.ui.compose.designsystem)
|
|
implementation(projects.core.common)
|
|
|
|
implementation(projects.mail.common)
|
|
implementation(projects.mail.protocols.imap)
|
|
|
|
implementation(projects.feature.account.common)
|
|
implementation(libs.androidx.activity.compose)
|
|
implementation(libs.androidx.biometric)
|
|
|
|
testImplementation(projects.core.ui.compose.testing)
|
|
}
|