Skip to content

Instantly share code, notes, and snippets.

@liminal
Created March 15, 2021 09:25
Show Gist options
  • Save liminal/976917e10d5066305b7071e28b5d970b to your computer and use it in GitHub Desktop.
Save liminal/976917e10d5066305b7071e28b5d970b to your computer and use it in GitHub Desktop.
Add tasks to uninstall apks
// Add helper tasks for uninstalling the apk from devices/emulators
android.applicationVariants.all { variant ->
tasks.create(name: "uninstall${variant.name.capitalize()}Apk", type: Exec, group: "uninstall") {
ignoreExitValue = true
commandLine android.getAdbExe(), 'uninstall', variant.applicationId
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment