22 lines
520 B
Kotlin
22 lines
520 B
Kotlin
plugins {
|
|
id(ThunderbirdPlugins.Library.androidCompose)
|
|
}
|
|
|
|
android {
|
|
namespace = "app.k9mail.feature.account.oauth"
|
|
resourcePrefix = "account_oauth_"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.ui.compose.designsystem)
|
|
implementation(projects.core.common)
|
|
|
|
implementation(projects.mail.common)
|
|
|
|
implementation(projects.feature.account.common)
|
|
|
|
implementation(libs.appauth)
|
|
implementation(libs.androidx.compose.material3)
|
|
|
|
testImplementation(projects.core.ui.compose.testing)
|
|
}
|