Is it necessary to use particular version of Kotli...
# amper
j
Is it necessary to use particular version of Kotlin right now with Fleet/Amper....getting following
Copy code
Class 'com.rickclephas.kmm.viewmodel.ViewModelScopeKt' is compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler
z
j
Does that also effectively mean that Wasm based Compose for Web clients aren't supported right now? Think I had to use later version of Kotlin for that.
j
I'm not 100% sure, but I think for wasm support you need
1.6.0-alpha*
versions of compose, but Kotlin 1.9.20 should be enough, unless I'm missing something.
j
ok, will try with that Kotlin version once I get the resolving of those ktor wasm dependencies working
j
Oh, sorry maybe the customizability of the compose version wasn't released yet
I just checked, and it was actually released in 0.2.0, but isn't documented. You should be able to specify the version of compose in
settings.compose.version
in your `module.yml`:
Copy code
settings:
  compose:
    enabled: true
    version: 1.6.0-beta02
j
thanks, I'll try that