mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 03:11:57 +01:00
buildDir deprecated, use layout.buildDirectory instead (#10097)
gradle/gradle#20210 gradle/gradle#24820
This commit is contained in:
parent
2ee895ee3c
commit
8a1625ec79
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -56,5 +56,5 @@ subprojects {
|
|||
}
|
||||
|
||||
tasks.register<Delete>("clean") {
|
||||
delete(rootProject.buildDir)
|
||||
delete(rootProject.layout.buildDirectory)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue