Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
41
app-ui-catalog/build.gradle.kts
Normal file
41
app-ui-catalog/build.gradle.kts
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
plugins {
|
||||
id(ThunderbirdPlugins.App.androidCompose)
|
||||
alias(libs.plugins.kotlin.serialization)
|
||||
alias(libs.plugins.kotlin.parcelize)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "net.thunderbird.ui.catalog"
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "net.thunderbird.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.navigation)
|
||||
|
||||
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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue