Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.7.1, expected version is 1.1.16.
时间: 2023-08-19 15:22:51 浏览: 97
后端资源:Kotlin 的简要介绍.docx
这个错误提示表明您的 Kotlin 模块编译版本与当前使用的版本不兼容。您需要更新您的 Kotlin 版本或者回退到与模块编译版本相同的 Kotlin 版本。可以尝试使用以下命令更新 Kotlin:
```
./gradlew wrapper --gradle-version=<version>
./gradlew build
```
其中 `<version>` 是您想要使用的 Kotlin 版本号。如果您使用的是 IntelliJ IDEA,可以在项目设置中更改 Kotlin 版本。
阅读全文