Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.7.1, expected version is 1.5.1.

在根目录build.gradle中增加:

低版本(buildscript -> dependencies):
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.1'
高版本(plugins);
id 'org.jetbrains.kotlin.android' version '1.7.1' apply false

在根目录app -> build.gradle -> buildscript -> dependencies中增加:

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.1"

posted on 2024-07-02 20:28  陈德彪  阅读(437)  评论(0)    收藏  举报

导航