Philip Wedemann
Philip Wedemann
I use Docker Desktop, so with shutdown Docker I mean clicking the docker icon in the menu bar and quit docker desktop, which also shutdowns the docker daemon.
@soywiz I think, the default target is now fixed with the latest alphas (745+), which uses 1.8 by default if not set.
For compose web you could use `0.0.0-on_kotlin_1.7.0-rc-dev705` but it has a problem when the project also contains a compose android target (its jvmTarget is blank for unknown reasons), workaround: https://github.com/JetBrains/compose-jb/pull/2130
Yeah, I wait until an official alpha too. It should be possible to build the different targets with different compose versions but there are still some Kotlin problems (eg https://youtrack.jetbrains.com/issue/KT-52795/KJS-and-KNative-IR-validationcompilation-errors-for-a-valid-kotlin-code)...
Thanks to eymar a new snapshot is available, rebased on androidx with 1.7.0 support: 0.0.0-release1.2-integration-dev736 The NPE is fixed too, you don't need to specify the jvmTarget. Keep in mind...
@GuilhE Do you want to use the "android" compose compiler? Otherwise I would suggest to use the JetBrains published one. And I think, you need to add the repo to...
Okay, it should work too. But your actual error message is about fetching the JetBrains Desktop runtime dependencies, eg ui: `org.jetbrains.compose.ui:ui:1.2.0-alpha01-dev709` These alpha versions are not available at mavenCentral: `https://repo.maven.apache.org/maven2/org/jetbrains/compose/ui/ui/1.2.0-alpha01-dev709/ui-1.2.0-alpha01-dev709.pom`,...
@eymar web :)
3. well maintained by community 4. Easy migration from existing react projects to Compose Web
You might need to add this if you get `cli.isMultipleCompiler is not a function`: ```kotlin afterEvaluate { rootProject.extensions.configure { versions.webpackCli.version = "4.10.0" } } ```