|
@@ -301,12 +301,12 @@ tasks {
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
"-P",
|
|
|
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
|
|
|
- project.buildDir.absolutePath + "/compose_metrics",
|
|
|
+ project.layout.buildDirectory.dir("compose_metrics").get().asFile.absolutePath,
|
|
|
)
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
"-P",
|
|
|
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
|
|
|
- project.buildDir.absolutePath + "/compose_metrics",
|
|
|
+ project.layout.buildDirectory.dir("compose_metrics").get().asFile.absolutePath,
|
|
|
)
|
|
|
}
|
|
|
}
|