0

The following command failed and kills the program. Am I correct in understanding that the adb shell command attempts to launch the app?

adb shell "am start -S -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -f 0x10200000 -n com.test.test"
Logcat terminated with code 0, signal null
UiAutomator exited
Error: Command failed: adb ...
/bin/sh: /path/to/adb No such file or directory
GregWringle
  • 445
  • 3
  • 6
  • 16

1 Answers1

0

Try this

adb shell "am start -S -a android.intent.action.MAIN -n com.test.test/android.intent.category.LAUNCHER"
karthick23
  • 1,313
  • 1
  • 8
  • 15