Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
33
core/ui/compose/designsystem/build.gradle.kts
Normal file
33
core/ui/compose/designsystem/build.gradle.kts
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
plugins {
|
||||
id(ThunderbirdPlugins.Library.androidCompose)
|
||||
alias(libs.plugins.kotlin.parcelize)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "app.k9mail.core.ui.compose.designsystem"
|
||||
resourcePrefix = "designsystem_"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(projects.core.ui.compose.theme2.common)
|
||||
|
||||
debugApi(projects.core.ui.compose.theme2.k9mail)
|
||||
debugApi(projects.core.ui.compose.theme2.thunderbird)
|
||||
|
||||
implementation(libs.androidx.autofill)
|
||||
implementation(libs.androidx.compose.material3)
|
||||
implementation(libs.androidx.compose.material3.adaptive)
|
||||
implementation(libs.androidx.compose.material3.adaptive.layout)
|
||||
implementation(libs.androidx.compose.material3.adaptive.navigation)
|
||||
implementation(libs.androidx.compose.material.icons.extended)
|
||||
|
||||
// Landscapist imports a lot of dependencies that we don't need. We exclude them here.
|
||||
implementation(libs.lanscapist.coil) {
|
||||
exclude(group = "io.coil-kt", module = "coil-gif")
|
||||
exclude(group = "io.coil-kt", module = "coil-video")
|
||||
exclude(group = "io.coil-kt.coil3", module = "coil-network-ktor3")
|
||||
exclude(group = "io.ktor")
|
||||
}
|
||||
|
||||
testImplementation(projects.core.ui.compose.testing)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue