android adb 常用命令

android adb常用命令:
https://blog.csdn.net/ezconn/article/details/90712895
https://blog.csdn.net/ezconn/article/details/99885715


查看三方应用包名:
adb shell pm list package -3(-s:列出系统应用 -3:列出第三方应用 -f:列出应用包名及对应的apk名及存放位置 -i:列出应用包名及其安装来源)

查看当前focus的app:
adb shell dumpsys window | findstr mCurrentFocus

启动无activity或未知activity的app:
未知activity:adb shell monkey -p com.termux -c android.intent.category.LAUNCHER 1(相当于点击桌面图标)
已知activity:adb shell am start -a android.intent.action.MAIN -n packageName

查看设备:
adb devices

查看安卓系统版本(platformVersion):
adb shell getprop ro.build.version.release

posted @ 2021-12-08 10:29  流失的痕迹  阅读(76)  评论(0编辑  收藏  举报