Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.6.0, expected version is 1.4.0.
时间: 2023-11-14 09:07:14 浏览: 41
Compiled_Table_Tools.zip_Compiled Table Tools_Table_arcview
这个错误提示表明你的 Kotlin 模块与当前环境中的 Kotlin 版本不兼容。可能是因为你使用了新版本的 Kotlin 编译模块,但是当前环境中只安装了旧版本的 Kotlin 运行时。解决方法是更新当前环境中的 Kotlin 版本,或者降低编译模块的版本。
如果你使用的是 Gradle 构建工具,可以尝试在项目根目录下的 build.gradle 文件中修改 Kotlin 版本,例如:
```
buildscript {
ext.kotlin_version = '1.4.32'
// ...
}
```
阅读全文