0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-19 19:52:14 +02:00
thunderbird-android/app-ui-catalog/build.gradle.kts

38 lines
1.0 KiB
Plaintext

plugins {
id(ThunderbirdPlugins.App.androidCompose)
}
android {
namespace = "app.k9mail.ui.catalog"
defaultConfig {
applicationId = "app.k9mail.ui.catalog"
versionCode = 1
versionName = "1.0"
}
buildTypes {
// Preview build type to render compose without debug features.
// This gives a better idea of the real world drawing performance.
create("preview") {
initWith(getByName("debug"))
applicationIdSuffix = ".preview"
isDebuggable = false
matchingFallbacks += listOf("release")
}
}
}
dependencies {
implementation(projects.core.ui.compose.designsystem)
implementation(projects.core.ui.legacy.designsystem)
implementation(projects.core.ui.compose.theme2.thunderbird)
implementation(projects.core.ui.compose.theme2.k9mail)
implementation(libs.androidx.compose.material3)
implementation(libs.androidx.compose.material.icons.extended)
implementation(libs.kotlinx.datetime)
}