Bootstrap

The binary version of its metadata is 1.6.0, expected version is 1.4.0.的解决办法

出现以下问题解决办法

C:/Users/PC/.gradle/caches/modules-2/files-2.1/io.mockk/mockk/1.12.3/6aeb6015b735285e9661d06b89c66915645c25a8/mockk-1.12.3.jar!/META-INF/mockk.kotlin_module: 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.

testImplementation "io.mockk:mockk-android:1.12.3"

出现这个错误原因"io.mockk:mockk-android:1.12.3"

使用kotlin-android最低1.6.0

但是整个项目工程1.4.0这个1.4.0gradlegradle plugin版本gradlegradle plugin版本升高expected version跟着升高

把mockk-android的版本升高时The binary version of its metadata也会跟着升高

解决办法

testImplementation "io.mockk:mockk-android:1.12.3"

改为

testImplementation "io.mockk:mockk-android:1.12.2"

编译可以

下面的网站中可以查看mockk-android各个版本依赖kotlin-stdlib

https://central.sonatype.com/artifact/io.mockk/mockk-android/1.12.3/dependencies

;