Search code examples
kotlinintellij-ideaannotations

Cannot import kotlin.reflect.full.* in intellij


I am going through the Kotlin Bootcamp for Programmers course on the android website and can't seem to import the above lib import kotlin.reflect.full.* I simply get an "Unresolved reference: full" error. I think it might have been deprecated but can't find its replacement, any help would be great


Solution

  • It's not part of the Kotlin standard library. Add the following dependency to your build.gradle file:

    implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"