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
Colton Idle
09/16/2021, 1:10 AM
@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
Albert Chang
09/16/2021, 1:11 AM
Before a stable release, yes.
c
Colton Idle
09/16/2021, 1:12 AM
ah okay. so it's for the alphas of compose. got it. thank you!