Android 解决Java和Kotlin JDK编译版本不一致异常

异常信息

复制代码
Execution failed for task ':andcodec:compileDebugKotlin'.
> 'compileDebugJavaWithJavac' task (current target is 1.8) and 'compileDebugKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version.
  Consider using JVM toolchain: https://kotl.in/gradle/jvm/toolchain

异常原因

因为java编译使用的JDK版本是1.8,而kotlin使用的版本是17,因此出现了该异常,一般常见于Android Studio版本升级之后默认JDK版本变化导致。

解决方法

app或者module下的build.gradle中修改如下配置将java和kotlin的版本设置为相同即可。

Groovy 复制代码
compileOptions {
    sourceCompatibility = JavaVersion.VERSION_17
    targetCompatibility = JavaVersion.VERSION_17
}
相关推荐
是小李呀~8 分钟前
【工作梳理】怎么把f12里面的东西导入到postman
java
攀小黑8 分钟前
Java 多线程加锁 synchronized 关键字 字符串当做key
java·开发语言
张风捷特烈12 分钟前
Flutter 伪 3D 绘制#02 | 地平面与透视
android·flutter
每次的天空18 分钟前
Kotlin 作用域函数:apply、let、run、with、also
android·开发语言·kotlin
余华余华22 分钟前
2024年蓝桥杯Java B组省赛真题超详解析-分布式队列
java·职场和发展·蓝桥杯
重生之我在写代码23 分钟前
如何进行apk反编译
android·程序员·编译器
破罐子不摔25 分钟前
【C#使用S7.NET库读取和写入西门子PLC变量】
java·c#·.net
树豪26 分钟前
跟着官网学 Lynx 之 搭建 Lynx todo-list app
android·前端
孙同学_33 分钟前
【Linux篇】自主Shell命令行解释器
android·linux
可爱的霸王龙36 分钟前
JVM——模型分析、回收机制
java·jvm