Can i use strong skipping in Compose Multiplatform...
# compose
v
Can i use strong skipping in Compose Multiplatform 1.6.0?
j
Yes, I think it was released in compose 1.5.4 release. CMP is using compose 1.6.0 🙂
Just add:
Copy code
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>() {
    compilerOptions.freeCompilerArgs.addAll(
        "-P",
        "plugin:androidx.compose.compiler.plugins.kotlin:experimentalStrongSkipping=true",
    )
}
v
Thanks
j
• Compiler 1.5.8 • Runtime 1.6.1 • UI 1.6.1 • Foundation 1.6.1 • Material 1.6.1 • Material3 1.2.0 This is the versions that CMP 1.6.0 using if I understand correct from release list, see https://github.com/JetBrains/compose-multiplatform/releases for more details 🙂