So is it correct to say the new Kotlin 2.x way of ...
# compose-android
d
So is it correct to say the new Kotlin 2.x way of acquiring the right Compose compiler only applies to non-Android 'Multiplatform' targets, while any Android target still requires the compiler version to be specified(?) I ask because I'm trying to use this new plugin in a MPP project and Android Studio still says:
Copy code
This version (1.5.11) of the Compose Compiler requires Kotlin version 2.0.0-Beta4 but you appear to be using Kotlin version 2.0.0-RC1 which is not known to be compatible.  Please consult the Compose-Kotlin compatibility map located at <https://developer.android.com/jetpack/androidx/releases/compose-kotlin> to choose a compatible version pair (or `suppressKotlinVersionCompatibilityCheck` but don't say I didn't warn you!).
d
It should apply to Android targets as well, but you may have to remove
kotlinCompilerExtensionVersion
from your Gradle files in case there’s a conflict.
s
Try RC3 instead, this is a known issue for RC1
👍 1