Slide 46
Slide 46 text
Stability reports - Configuration
kotlinOptions {
val composeReportsDir = "compose_reports"
freeCompilerArgs += listOf(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.layout.buildDirectory.get().dir(composeReportsDir).asFile.absolutePath,
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.layout.buildDirectory.get().dir(composeReportsDir).asFile.absolutePath,
)
}