ETA of a stable Compose release with KT 1.5.30?
# compose
o
ETA of a stable Compose release with KT 1.5.30?
a
As per the release note, starting from 1.1.0-alpha03 the compose compiler plugin is compatible with stable version of compose runtime so you can just use the latest version of compiler (which is compatible with kotlin 1.5.30) with stable versions of all other runtime dependencies. Just change this line in your build script:
Copy code
kotlinCompilerExtensionVersion = "1.1.0-alpha04"
c
@Albert Chang I'm not sure I'm following correctly. Does this basically mean that we're going to be free to use newer versions of kotlin before "compose" comes out with a release that targets that newer version of kotlin?
1
a
Before a stable release, yes.
c
ah okay. so it's for the alphas of compose. got it. thank you!