-
Notifications
You must be signed in to change notification settings - Fork 5.1k
[All] Migrate to the Compose gradle plugin #1354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
df68bc6
to
3b44092
Compare
I have a question that I cannot find anywhere, is there anything we need to take care about regarding BOM and compose versions? This is because now that the compiler comes with kotlin 2.0 I wonder if previous versions of BOM or compose components will crash since we are not specifying the right compiler version. Example: I use an old version of BOM (2023.09.00) which have compose 1.5.1 (on which I need compiler 1.5.1 and kotlin 1.9.0) https://developer.android.com/jetpack/androidx/releases/compose-kotlin Will I have any issues using old versions of compose libs without specifying anymore the right compiler? Thanks |
Compose library versions and Compose compiler versions are not linked, you can mix and match them. There is no need to match Compose 1.5.1 with Compiler 1.5.1 See this blog post for more details |
Thanks a lot ! |
Migrate all samples to the compose gradle plugin and Kotlin 2.0
Also enable strong skipping mode on all samples