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

后端 未结 3 1789
孤街浪徒
孤街浪徒 2020-12-14 13:37

When I compile I got the above error. My gradle file as below : -

apply plugin: \'com.android.application\'
apply plugin: \'kotlin-android\'
apply plugin: \'         


        
3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-14 14:21

    I resolved this by adding this in build.gradle

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

提交回复
热议问题