William
03/26/2025, 3:45 PMCould not resolve org.jetbrains.compose.ui:ui-tooling-preview:1.8.0-alpha03. ... No matching variant
when trying to run the wasm app..
No idea how to bypass this without commenting out compose.preview
and compose.uiTooling
..
which will then cause compose preview to stop working..tylerwilson
03/26/2025, 4:52 PMWilliam
03/26/2025, 4:57 PMcompose.preview
and compose.uiTooling
when running wasmjs
I use this to run my wasmJs
:composeApp:wasmJsBrowserDevelopmentRun -PisWasm=true
then in my build.gradle
if (!project.hasProperty("isWasm")) {
implementation(compose.preview)
implementation(compose.uiTooling)
}
not sure if it will work for others.. at least my preview are still working and i can run the webapptylerwilson
03/26/2025, 4:58 PMWilliam
03/26/2025, 5:00 PM