【Android】Compose Compiler 与 Kotlin 的版本兼容性
问题描述
err1: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.(模块是用不兼容的Kotlin版本编译的。其元数据的二进制版本为1.7.1,预期版本为1.5.1。)
err2:This version (1.0.5) of the Compose Compiler requires Kotlin version 1.5.31 but you appear to be using Kotlin version 1.6.21 which is not known to be compatible.(此版本(1.0.5)的Compose编译器需要Kotlin 1.5.31版本,但您似乎使用的是Kotlin 1.6.21版本,该版本不兼容。)
解决办法
1.根据问题描述可以看出是预期版本低于实际版本,选择将预期版本提示至1.7.1
2.参考兼容性版本对照表
3.博主参考了参考1,问题描述一致,配置文件也一致,不过未能编译通过,参考该帖子修改了kotlin的配置,但是引发了err2的出现。
4.然后是解决err2,参考了参考2,任然未能解决。
5.仔细阅读问题,结合参考2的内容,可以发现问题的实质就是compose和kotlin没有对应上,根据Android Studio的自动提示,修改compose的版本(build.gradle:app),然后根据兼容性版本对照表设置kotlin的版本(build.gradle:项目)。然后sync就可以了。
参考内容
参考1:[https://blog.csdn.net/weixin_45677723/article/details/125675714?spm=1001.2014.3001.5506]
参考2:[https://it.cha138.com/mysql/show-105341.html#_2]
更多推荐
所有评论(0)