Is the package `kotlin.reflect.full` unavailable i...
# multiplatform
j
Is the package
kotlin.reflect.full
unavailable in multiplatform? I've added the
kotlin("reflect")
dependency but the imports don't resolve in my multiplatform module for some reason. They do resolve when I add the same dependency to a module configured for the JVM.
e
it is not available
you can see on https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect.full/ that everything is marked JVM-only
j
thanks