mac 无法连接android手机进行调试 解决方案

查看usb设备信息

system_profiler SPUSBDataType   

Android:


          Product ID: 0x1052

          Vendor ID: 0x12d1  (Huawei Technologies Co., Ltd.)

          Version: 2.31

          Serial Number: 022AQQ2136022776

          Speed: Up to 480 Mb/sec

          Manufacturer: Android

          Location ID: 0x14100000 / 7

          Current Available (mA): 500

          Current Required (mA): 500

          Capacity: 5.7 MB (5,710,656 bytes)

          Removable Media: Yes

          Detachable Drive: Yes

          BSD Name: disk2

          Partition Map Type: Unknown

          S.M.A.R.T. status: Not Supported


查看到我的android手机的Vendor ID: 0x12d1 ,记住这个id

 创建、修改adb_usb.ini文件

 vi ~/.android/adb_usb.ini

在打开的 adb_usb.ini文件中添加0x22d9然后保存退出

在命令行输入echo $HOME

命令行输入touch .bash_profile

命令行输入open -e .bash_profile 

在.bash_profile文件中输入 export PATH=/Users/您的用户名/文件路径/platform-tools/:$PATH

直接关闭.bash_profile文件,即可自动保存您输入的内容。 

在命令行中输入source .bash_profile

重启finder

重启adb 

adb kill-server

adb start-server

adb devices




你可能感兴趣的:(android)