Tag Archives: android

Using ADB commands to work with android apps

//start the app
adb shell am start -n com.myapp.android/.packagename.LaunchActivity
//send to background
adb shell am start com.android.calculator2
//kill the app
adb shell am force-stop com.myapp.android

Leave a comment

Filed under Android