adb启动和停止android app方法
一、启动app
adb shell am start 包名/MainActivity
上面涉及到的包名及mainactivity获取办法
方法一:
1.adb shell
2.dumpsys activity | grep mFocusedActivity
方法二:反编译
aapt dump badging c:\software\taobao.apk
二、停止app
检查app是否在运行
adb shell ps | grep sohu
② 此处有两种方法关闭app进程,如下所示:
- Method-A:
在宿主机的shell中运行以下命令:
adb shell am force-stop com.sohu.sohuvideo
注意:
这种方法会强制停止APP进程,不会清除APP进程在系统中产生的数据。
- Method-B:
在宿主机的shell中运行以下命令:
adb shell pm clear com.sohu.sohuvideo
注意:
这种方法不仅会停止APP进程,而且会清除这个APP进程产生的所有数据。
③ 检查搜狐视频是否正在运行
在宿主机的shell中运行以下命令:
adb shell ps | grep sohu