cb
06/17/2024, 10:39 AMval sourceTask = ...
tasks.named { it.startsWith("convertXmlValueResources") }.configureEach {
dependsOn(sourceTask)
}
tasks.named("generateComposeResClass") {
dependsOn(sourceTask)
}
Neither of these task types are linked or dependent on each other AFAICT, so need to make them all depend on my task. Is it worth adding a single parent task? assmebleComposeResources
or something?Konstantin Tskhovrebov
06/21/2024, 1:12 PMcb
06/21/2024, 1:14 PMcb
06/21/2024, 1:14 PMgenerated.xml
and gitignore that pathKonstantin Tskhovrebov
06/21/2024, 1:19 PMcb
06/21/2024, 1:21 PMKonstantin Tskhovrebov
06/26/2024, 7:04 AM