Hi, I have a task that is run after certain task, ...
# gradle
u
Hi, I have a task that is run after certain task, but that task is a "variant-ed", ie. fooBarDevDebug so I have a task that is run after this, lets call it quax
Copy code
afterEvaluate {
    android.applicationVariants.all { variant ->
        project.tasks.findByName("fooBar${variant.name.capitalize()}").finalizedBy quax(variant.name ????)
    }
}