what is the latest wasm version of compose?
# compose-web
r
what is the latest wasm version of compose?
ł
r
Thanks @Łukasz Nowakowski. The latest version doesn't seem to work for iOS targets. Is there any workaround for that?
o
I guess the issue you have with ios is some libraries are missing. The reason is that some libs for k/wasm (coroutines and atomicfu) were built separately in experimental repo, and that CI didn't have macos agents to build them for ios. You can workaround it by substitution dependencies (with -wasm postfix) for missing libraries: https://docs.gradle.org/current/userguide/resolution_rules.html But it's important to do that only for ios configurations, and keep the original dependencies for other target s (k/wasm, k/js, etc..)
r
I tried the dependency substitution and couldn't get anywhere with it. What I noticed was that the iOS target is only building if I don't use the wasm compose plugin and I haven't found a way to substitute the plugin yet. From what i've learned from the Gradle docs, plugin dependencies are evaluated first and eagerly before the whole project configuration begins so making it difficult for their versions to be substituted. @Oleksandr Karpovich [JB]