Hey, have you ever faced a bug that makes some imp...
# multiplatform
l
Hey, have you ever faced a bug that makes some imports from kotlin standard library suddenly unavailable? đź§µ
I don't know what's going on but imports like runCatching, listOf, and some other functions from the standard library aren't being recognized by the IDE
But this is only happening on multiplatform modules
native android ones are working fine
I know it's an IDE bug because the project builds and I can successfully deploy it to the emulator
j
I had this issue when I had part of iOS platform included in build scripts on windows... for some reason IDE went crazy and it behaved like most of stdlib was unknown
v
I have seen this in kotlin.multiplatform version 1.9.22 and it went away in 1.9.23.
l
I'm using kotlin 1.9.20
apparently this issue came from nowhere, i don't remember making any changes in the build settings recently
@Václav Novák Updating to Kotlin 1.9.23 solved the problem
thankss
👍 1