通过adb shell 启动APP方法
Posted ntcat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过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
以上是关于通过adb shell 启动APP方法的主要内容,如果未能解决你的问题,请参考以下文章