sindrenm
05/15/2024, 7:15 AMcomposeCompiler {}
that the docs mention is introduced alongside the new Kotlin 2.0.0+ Compose compiler.
I see Now in Android still uses the `experimentalStrongSkipping=true` flag. Is this still what we should use?svenjacobs
05/15/2024, 8:19 AMtasks.withType<KotlinCompile> {
compilerOptions.freeCompilerArgs.addAll(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:strongSkipping=true",
)
}
sindrenm
05/15/2024, 12:23 PMexperimentalStrongSkipping
to strongSkipping
, then. That makes sense. Thanks!