I'm looking at the WASM project generated by the n...
# webassembly
c
I'm looking at the WASM project generated by the new KMP wizard. Nowhere in the build.gradle.kts are any dependencies declared for the WASM source set, but somehow it has access to
androidx.compose.ui.window.CanvasBasedWindow
. How is that possible?
a
It could access also dependencies from the common source set
c
Is
CanvasBasedWindow
a common function?
These are the common dependencies
o
CanvasBasedWindow is declared in js and wasm sourcesets of compose.ui It's not a common function
c
I see, thanks