kotlin.jvm.KotlinReflectionNotSupportedError: Kotlin reflection implementation is not found at runtime. Make sure you have kotlin-reflect.jar

Solution 1:

From the error, I assume:

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

in your dependencies in addition to the standard library.

Solution 2:

I resolved this by adding this in build.gradle

implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.61"