Android Studio throws build error in Kotlin project which calls static method in java interface

后端 未结 4 2074
挽巷
挽巷 2021-02-20 11:45

I have a Kotlin project in Android Studio. I am calling a static method in Java interface from the Kotlin code. The build fails with the error,

Calls to static m         


        
4条回答
  •  -上瘾入骨i
    2021-02-20 12:06

    I am able to resolve this by adding below block as my build.gradle is not in dsl. To set the target JVM version for the Kotlin compiler, use the following block:

    tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
        kotlinOptions {
            jvmTarget = "1.8"
        }
    }
    

提交回复
热议问题