Compose Compiler 与 Kotlin 的版本兼容性
Posted fundroid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Compose Compiler 与 Kotlin 的版本兼容性相关的知识,希望对你有一定的参考价值。
Compose 与 kotlin 版本兼容
有时 android Studio 的 build.gradle 中会提示 Compose 有了新版本,但是如果升级不当可能会出现编译错误,比如下面这样的搭配就会出现 build error
ext.versions = [
'kotlin' : '1.6.21'
'compose': '1.2.0-rc02'
]
比如当我试图将 1.2.0-rc02 升级到 1.2.0 时,会发生以下编译错误
This version (1.2.0) of the Compose Compiler requires Kotlin version 1.7.0 but you appear to be using Kotlin version 1.6.21 which is not known to be compatible.
原因是 Kotlin 与 Compose Compiler 版本不匹配
Compose 与 Kotlin 的兼容性对应关系:https://developer.android.com/jetpack/androidx/releases/compose-kotlin
Compose Compiler 需要与 Kotlin 保持一致,如果你想使用高版本 Compose 库,就要升级你的 Kotlin。
只兼容 Compose Compiler
在大型项目中,除了 Kotlin 和 Compose 还有很多其他依赖库,你想用最新的 Compose 但又不想升级 Kotlin(影响其他库),那怎么办?
以前 Compose 的各个库都是用统一的版本号,从 1.2.0 开始,Compose Compiler 可以使用独立的版本号
https://android-developers.googleblog.com/2022/06/independent-versioning-of-Jetpack-Compose-libraries.html
如果想要 Kotlin 保持 1.7.0 不变,可以让 Compose Compiler 保持在 1.2.0,但是不影响你使用更高版本的 Compose-UI。Compose Compiler 可以做到向后兼容:
ext.versions = [
'kotlin' : '1.7.0'
'compose' : '1.2.0', // compose-compiler
'composeUi' : '1.3.0-beta01' // compose-ui
]
反之亦然,你可以升级你的 Compose Compiler 匹配最新的 Kotlin 版本,但是其他 Compose 库可以保持不变
以上是关于Compose Compiler 与 Kotlin 的版本兼容性的主要内容,如果未能解决你的问题,请参考以下文章
Compose Compiler 与 Kotlin 的版本兼容性
深入浅出 Compose Compiler Kotlin Compiler & KCP
This version (1.0.0-beta07) of the Compose Compiler requires Kotlin version 1.4.32 but you appear t
This version (1.0.0-beta07) of the Compose Compiler requires Kotlin version 1.4.32 but you appear t