Mac OS X 下有关Android adb用法详解
程序员文章站
2023-01-21 10:08:19
mac os x 下有关android adb用法详解
一、什么是adb?
adb的全称是android debug bridge,用来调试android程序的,白...
mac os x 下有关android adb用法详解
一、什么是adb?
adb的全称是android debug bridge,用来调试android程序的,白话点就是debug工具!
位置:一般下载android的sdk时候在platform-tools中有adb程序。
二、在mac上配置adb命令环境
1. 运行命令 cd $home 进入到用户home目录
2. 创建 .bash_profile文件 :touch .bash_profile
打开文件命令: open -e .bash_profile
3. 在文件中输入 export path=/~/android/sdk/platform-tools/:$path
用户根据自己sdk中的adb目录天上即可
4. 运行命令 source .bash_profile 更新配置 ,adb 命令查看是否配置成功!
三、mac下识别android手机的问题
1. 通过命令 system_profiler spusbdatatype 读取手机的商户id(vendor id)
2. 通过命令 echo "商户id" > ~/.android/adb_usb.ini 将id写入文件
如果adb_usb.ini文件不存在:
cd ~/.android (切换到当前路径) 和 touch adb_usn.ini (新建)
3. 通过命令 adb kill-server (关闭adb)
adb start-server(开启adb)
adb devices (查看设备)
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!