Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

buildDir deprecated, use layout.buildDirectory instead (#10097)

gradle/gradle#20210
gradle/gradle#24820
Cette révision appartient à :
Howard Wu 2023-11-01 10:14:31 +08:00 révisé par GitHub
Parent 2ee895ee3c
révision 8a1625ec79
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23
2 fichiers modifiés avec 3 ajouts et 3 suppressions

Voir le fichier

@ -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,
)
}
}

Voir le fichier

@ -56,5 +56,5 @@ subprojects {
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
delete(rootProject.layout.buildDirectory)
}