Skip to content

Instantly share code, notes, and snippets.

@mczernek
Created June 15, 2023 15:15
Show Gist options
  • Save mczernek/6109b6b98a25c38f785873af8428fc36 to your computer and use it in GitHub Desktop.
Save mczernek/6109b6b98a25c38f785873af8428fc36 to your computer and use it in GitHub Desktop.
tasks.register("myTask") {
println("Configuration")
doFirst {
println("1")
}
doLast {
println("2")
}
}
project.tasks.named("installDebug", DefaultTask::class.java).configure{
this.finalizedBy("myTask")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment