Moe
09/13/2024, 5:54 PMimport kotlin.reflect.full.findAnnotation
import kotlin.reflect.full.primaryConstructor
but now all I'm getting is Unresolved reference: full
although
import kotlin.reflect.KClass
seems to work perfectly fine.
not sure what im missing to be honest, but any assistance would be highly appreciated
This is happening in my JVM module, and it works fine in my androidMain. I have the dependency set to both.
P.S Koltin 2.0.20 Reflect 2.0.20ephemient
09/13/2024, 10:20 PMdependencies {
implementation(kotlin("reflect"))
}
as noted at the top of https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect.full/ and in more detail at https://kotlinlang.org/docs/reflection.html#jvm-dependencyephemient
09/13/2024, 10:23 PM