k9-mail/feature/account/oauth/build.gradle.kts
2025-11-22 13:56:56 +01:00

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)
}