k9-mail/feature/account/avatar/impl/build.gradle.kts

18 lines
408 B
Text
Raw Normal View History

2025-11-22 13:56:56 +01:00
plugins {
id(ThunderbirdPlugins.Library.androidCompose)
}
android {
namespace = "net.thunderbird.feature.account.avatar.impl"
resourcePrefix = "account_avatar_"
}
dependencies {
implementation(projects.core.ui.compose.designsystem)
implementation(projects.core.common)
implementation(projects.feature.account.avatar.api)
testImplementation(projects.core.ui.compose.testing)
}