尝试编译用kotlin编写的单元测试时出现以下错误.
任务:app:compileDebugUnitTestKotlin失败…无法将使用JVM target 1.7构建的字节码内联到使用JVM target 1.6构建的字节码中.请指定正确的“ -jvm-target”选项
我尝试在我的应用程序build.gradle中为我的android配置设置源兼容性:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
以及在build.gradle根目录下配置所有kotlin编译任务:
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = '1.8'
}
}
最佳答案
原文链接:https://www.f2er.com/android/531346.html