mirror of
https://github.com/igorescodro/alkaa.git
synced 2025-08-06 16:19:31 +08:00

Teh latest Compose release most likely removed those icons from the regular icon dependency. Adding the `materialIconsExtended` to keeping using those icons in this module.
26 lines
576 B
Plaintext
26 lines
576 B
Plaintext
import extension.setFrameworkBaseName
|
|
|
|
plugins {
|
|
id("com.escodro.multiplatform")
|
|
alias(libs.plugins.compose)
|
|
alias(libs.plugins.compose.compiler)
|
|
}
|
|
|
|
kotlin {
|
|
setFrameworkBaseName("designsystem")
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(libs.koin.compose)
|
|
implementation(compose.runtime)
|
|
implementation(compose.material)
|
|
implementation(compose.material3)
|
|
implementation(compose.materialIconsExtended)
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "com.escodro.designsystem"
|
|
}
|