박상혁
08/27/2025, 2:20 AMExcellence kawej
08/27/2025, 10:53 AM박상혁
08/28/2025, 4:51 AMErnestas
09/10/2025, 8:34 AMdesignsystem
module, which has a material3
dependency, that I want to hide from the composeApp
module, but it's still visible:
# settings.gradle.kts
include(":composeApp")
include(":core:designsystem")
<...>
# :core:designsystem:build.gradle.kts
kotlin {
sourceSets {
commonMain.dependencies {
implementation(compose.material3)
}
}
}
<...>
Did you find a solution for this?박상혁
09/10/2025, 8:42 AMErnestas
09/10/2025, 8:49 AM박상혁
09/10/2025, 8:52 AM