ADB
😏

ADB

MAC

1、先安装brew:
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
 
2、安装adb:
brew install android-platform-tools
3、查看当前连接设备
adb devices
 

ADB相关操作

1、安装apk包
adb install -s xxx xxx.apk. #-s指定编号 adb install -r xxx.apk. #覆盖安装
2、卸载
adb uninstall xxx adb -s xxxx uninstall com.xx.xx adb -s xxxx uninstall -k com.xx.xx #保留配置和缓存文件
3、推送文件
adb push /文件/ /手机位置/ /sdcard/为手机根目录
 
 
(2)验证在cmd中输入adb devices即可,详情可见此页面