Join Slack
Powered by
How can I check which Kotlin version is supported ...
# compose
n
Norbi
01/03/2023, 8:11 PM
How can I check which Kotlin version is supported by a specific Compose/MP version, eg.
v1.3.0-beta04-dev903
? Thanks.
Norbi
01/03/2023, 8:53 PM
I have found only this:
https://github.com/JetBrains/compose-jb/blob/master/VERSIONING.md#kotlin-compatibility
j
John O'Reilly
01/03/2023, 8:54 PM
you can also sort of combine that with
https://androidx.dev/storage/compose-compiler/repository
John O'Reilly
01/03/2023, 8:55 PM
for example I have following in Compose for Desktop client that's in project using Kotlin 1.8.0
Copy code
compose { kotlinCompilerPlugin.set("1.4.0-dev-k1.8.0-RC-4c1865595ed") }
John O'Reilly
01/03/2023, 8:56 PM
(and looks btw that that page was just updated short while ago for actual 1.8.0 version!)
2
Views
Open in Slack
Previous
Next