ADB常用命令

安装应用
adb install -r test.apk
删除应用
adb uninstall com.android.test
启动应用
adb shell am start 
-n "com.android.test/com.android.test.MainActivity" 
-a android.intent.action.MAIN 
-c android.intent.category.LAUNCHER
强制关闭应用
adb shell am force-stop com.android.test

注:给关闭状态的应用发送广播需要添加
FLAG_INCLUDE_STOPPED_PACKAGES
代码:intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
命令:adb shell am broadcast -a com.android.test --include-stopped-packages
获取Android系统开机时间(秒):
Linux下:adb shell cat /proc/stat | grep btime
Windows下:adb shell cat /proc/stat | findstr btime
获取设备网络配置信息:
adb shell netcfg

参考链接:

Android进程绝杀技–forceStop

adb 打开和关闭应用

android为广播加上FLAG_EXCLUDE_STOPPED_PACKAGES

发表评论