Justin Salér
10/31/2023, 1:42 PMCould not find org.jetbrains.kotlin:kotlin-stdlib-wasm:1.9.20-RC
The reason it doesn’t exist is obviously because I want org.jetbrains.kotlin:kotlin-stdlib-wasm-js:1.9.20-RC
instead.
I only get this error when adding
implementation(compose.material3)
The other Compose libraries compiles fine.Justin Salér
10/31/2023, 1:47 PMimplementation(compose.material3) {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-wasm")
}
so this is more of a heads-up.John O'Reilly
10/31/2023, 1:50 PMJohn O'Reilly
10/31/2023, 1:51 PMcompose-web-wasm
module....also some related settings in main build.gradle.kts
John O'Reilly
10/31/2023, 1:53 PMJustin Salér
10/31/2023, 2:01 PMcompose.material3
, which I don't think you use in your projects (you use compose.material
)
But thanks a lot for some PoCs with the versions!John O'Reilly
10/31/2023, 2:12 PMOleksandr Karpovich [JB]
10/31/2023, 2:19 PMJohn O'Reilly
10/31/2023, 2:35 PMPeopleInSpace.uninstantiated.mjs:13 Uncaught TypeError: Failed to resolve module specifier '@js-joda/core'
at instantiate (PeopleInSpace.uninstantiated.mjs:13:67)
at load.mjs:7:11
Oleksandr Karpovich [JB]
10/31/2023, 2:38 PMJohn O'Reilly
10/31/2023, 2:40 PMJohn O'Reilly
10/31/2023, 2:41 PMbuild.graide.kts
for example with resolutionStrategy
stuff thereJustin Salér
11/01/2023, 6:36 AMif (requested.module.name.contains("kotlinx-serialization") && requested.version == "1.5.2-wasm0") {
useVersion("1.6.1-wasm0")
}
Seems like the issue was in kotlinx-datetime. And this code solved it!
🤦♂️