问题
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.
原因
你的gradle插件使用的是1.6.0,但是你引入的第三库使用的低版本。
解决方案
方案一:
降低 gradle版本,4.0.1版本使用的是1.4.0
classpath 'com.android.tools.build:gradle:4.0.1'
方案二:
忽略检查后打包会明显加快文章来源:https://www.toymoban.com/news/detail-770085.html
android{
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
方案三:
(这是比较推荐的方案)文章来源地址https://www.toymoban.com/news/detail-770085.html
ext.kotlin_version = '1.5.21'
dependencies {
configurations.all { resolutionStrategy { force "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" } }
configurations.all { resolutionStrategy { force "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version" } }
}
到了这里,关于打包过程遇到的问题:The binary version of its metadata is 1.6.0, expected version is 1.4.0的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!