Skip to content

Instantly share code, notes, and snippets.

@mformetal
Created June 7, 2016 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mformetal/dff2fd12cc79996043f8521f41bcb17a to your computer and use it in GitHub Desktop.
Save mformetal/dff2fd12cc79996043f8521f41bcb17a to your computer and use it in GitHub Desktop.
Gradle command line builds
task appStart(type: Exec, dependsOn: 'installDebug') {
def adb = "$System.env.ANDROID_HOME/platform-tools/adb"
commandLine "$adb", 'shell', 'am', 'start', '-n', 'package.name/activityclass'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment