Files
alkaa/libraries/designsystem/build.gradle.kts
Igor Escodro 7c0e0b645b 🏒 Add materialIconsExtended dependency in designsystem
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.
2025-05-08 10:59:11 -04:00

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"
}