Am I correct that the dependency ‘compose.desktop....
# compose-desktop
a
Am I correct that the dependency ‘compose.desktop.currentos’ includes all the skia dependencies as well as the full compose stack incl material? If so, what would be the best way to include only skia + compose runtime, ui and foundation. Is there also a convenient shortcut or is it just manually adding the deps?
That was pretty simple actually:
Copy code
implementation(compose.desktop.currentOs) {
    exclude("org.jetbrains.compose.material", "material")
}
k
And also the same for material 3
exclude(group = "org.jetbrains.compose.material3", module = "material3")