Skip to content

Instantly share code, notes, and snippets.

View antoinecampbell's full-sized avatar

Antoine Campbell antoinecampbell

View GitHub Profile
def installAll = tasks.create('installAll')
installAll.description = 'Install all applications.'
android.applicationVariants.all { variant ->
installAll.dependsOn(variant.install)
// Ensure we end up in the same group as the other install tasks.
installAll.group = variant.install.group
}