Remove warnings in the compose compiler reports configuration gradle code (#1932)
This commit is contained in:
parent
482728425d
commit
48ef9cda19
1 changed files with 2 additions and 2 deletions
|
|
@ -383,13 +383,13 @@ subprojects {
|
||||||
if (project.findProperty("composeCompilerReports") == "true") {
|
if (project.findProperty("composeCompilerReports") == "true") {
|
||||||
freeCompilerArgs += listOf(
|
freeCompilerArgs += listOf(
|
||||||
"-P",
|
"-P",
|
||||||
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=${project.buildDir.absolutePath}/compose_compiler"
|
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=${project.layout.buildDirectory.asFile.get().absolutePath}/compose_compiler"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (project.findProperty("composeCompilerMetrics") == "true") {
|
if (project.findProperty("composeCompilerMetrics") == "true") {
|
||||||
freeCompilerArgs += listOf(
|
freeCompilerArgs += listOf(
|
||||||
"-P",
|
"-P",
|
||||||
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=${project.buildDir.absolutePath}/compose_compiler"
|
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=${project.layout.buildDirectory.asFile.get().absolutePath}/compose_compiler"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue