adb shell常用命令

adb shell进入手机(也可直接使用adb shell 加 下面的命令):

启动
am start -a android.intent.action.MAIN -n com.zhujh.test/.MainActivity

关闭
am force-stop com.zhujh.test

查看进程
ps |grep com.zhujh.test

查看运行的service状态
dumpsys activity services com.zhujh.test
查看运行的service状态(和上面不一样,grep只是过滤了指定文本)
dumpsys activity services | grep com.zhujh.test

模拟隐式广播和后台服务都不可用的情况
$ adb shell cmd appops set RUN_IN_BACKGROUND ignore

重启隐式广播和后台服务
$ adb shell cmd appops set RUN_IN_BACKGROUND allow

覆盖安装
$ adb install -r xxxx.apk

Android中开发需要的高效助推的命令总结

其他命令 (查看分辨率 等等)

其他命令 (查看分辨率 等等)

你可能感兴趣的:(adb shell常用命令)