美文网首页
一、Mac 上使用 adb

一、Mac 上使用 adb

作者: CoderLF | 来源:发表于2022-05-11 17:21 被阅读0次

1. 安装IDE (android studio)

安装后,

确认adb目录,一般目录在 /Library/Android/sdk/platform-tools,代表当前用户的根目录

2. 编辑.bash_profile

添加

export PATH=${PATH}:你的platform-tools具体地址

我的是:

export PATH=${PATH}:~/Library/Android/sdk/platform-tools

最关键的要输入生效命令

source ~/.bash_profile

3. adb 常用命令

// 查看所有设备:
adb devices
// 安装指定apk(路径可不用手写,直接把apk文件拖拽过来):
adb  install <file>
// 卸载指定包 :
adb uninstall <package>
// 拷贝文件到设备上:
 adb push <local> <remote>
// 从设备中拷贝文件:
 adb pull <remote> [<local>]
// 查看命令帮助:
adb help 

相关文章

网友评论

      本文标题:一、Mac 上使用 adb

      本文链接:https://www.haomeiwen.com/subject/wvtjurtx.html