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

后端 未结 4 2073
挽巷
挽巷 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条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-20 12:19

    I had the same problem because I had a folder for the integration tests different than the unit test folder. So the build.gradle needs more configuration:

    compileKotlin {
        kotlinOptions.jvmTarget = "1.8"
    }
    compileTestKotlin {
        kotlinOptions.jvmTarget = "1.8"
    } 
    //added this
    compileIntegrationTestKotlin {
      kotlinOptions.jvmTarget = "1.8"
    }
    

提交回复
热议问题