adb 常用命令
adb 是Android debug bridge 的简称,意是 安卓调试桥梁,连接安卓手机和电脑通信的桥梁
- 常用集合
chmod +x gradlew && ./gradlew -q :app:dependencies > depend.txt
adb shell dumpsys activity top
adb logcat | grep com.tencent.mm
adb pull /sdcard/aaa/ /Users/admin/Desktop
AS工具命令
//build 中查看Manifest错误配置信息
./gradlew processDebugManifest --stacktrace
- 卸载安装和清除数据缓存
adb install /Users/apple/Desktop/wx.apk
adb uninstall com.tencent.mm
adb uninstall -k packager com.tencent.mm //卸载微信,但保存配置文件
adb shell pm clear com.tencent.mm //清除微信数据和缓存
- 手机启动方式
手机启动进入 recovery状态: adb reboot recovery
进入 fastboot 状态: adb reboot bootloader
检查fastboot 连接的设备: fastboot devices
fastboot 状态下,手机重启: fastboot reboot
了解更多,可参考这位博主