Skip to content

Instantly share code, notes, and snippets.

@mustafa01ali
Created September 5, 2015 13:42
Show Gist options
  • Save mustafa01ali/042fcab6c3ed40809a77 to your computer and use it in GitHub Desktop.
Save mustafa01ali/042fcab6c3ed40809a77 to your computer and use it in GitHub Desktop.
Gradle task to install and launch an app on a device/emulator
// Task to compile, install and run the debug build on a device/emulator
task run(type: Exec, dependsOn: 'installDebug') {
commandLine 'adb', 'shell', 'am', 'start', '-n', 'com.myapp/.MyFirstActivity'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment