- 打印已安装Activity列表
adb shell pm list packages
- 打印指定app详细信息
adb shell dumpsys package com.leon.demo
- 打印当前Activity
adb shell dumpsys window | findstr mCurrentFocus
- 安装电脑上apk到手机
adb install C://demo.apk
- 卸载手机中的app
adb uninstall com.tencent.mm
- 卸载系统自带应用
adb shell pm uninstall --user 0 com.market.chenxiang
- 把手机文件拉到本地
adb pull base.apk
- aapt解析apk包
aapt dump badging base.apk
aapt d badging SoftKeyboard.apk | findstr "label"
- 解析出现乱码,转为utf编码
chcp 65001
- 启动Activity
adb shell am start -n {包(package)名}/{包名}.{活动(activity)名称}
- 启动Service
adb shell
am startservice –user 0 -n cn.lenovo.reportdeviceinfo/.DeviceService
网友评论