通过adb shell 启动APP方法

先列出手机上所有应用信息:

adb shell dumpsys package > ./package.txt

从中找出你要的APP,重点关注 Activity Resolver Table 下面的内容。另外,看你的应用APK包的名字,搜索关键词

找到后:
强制关闭应用:

adb shell am force-stop xxxxxx

启动应用:

adb  shell am start -n xxxxxx/xxxx

posted @ 2018-04-28 19:15  ntcat  阅读(17044)  评论(0编辑  收藏  举报