在Mac系统上配置Android真机调试环境


我使用的系统是OS X Yosemite 10.10.2,使用的Android手机是MX4 Pro

1. 安装adb客户端。你可以下载好最新版本的SDK,在platform-tools目录下有adb命令

2. 配置adb命令的环境变量。在.bash_profile中加入

export PATH=$PATH:/Users/jerikc/Library/Android/sdk/platform-tools
如果OS X系统上找不到.bash_profile,可以使用如下命令创建.bash_profile文件
$ touch .bash_profile
3.执行.bash_profile
$ source ~/.bash_profile
4.检查adb环境变量是否配置成功
$ adb version
Android Debug Bridge version 1.0.32

5.连接好Android手机,注意不要用充电线连接,要用数据线连接。

手机上选择的“连接方式”为“内置光盘”模式:

在Mac系统上配置Android真机调试环境_第1张图片

我使用的是MX4 Pro,如下截图:

在Mac系统上配置Android真机调试环境_第2张图片

6. system_profiler SPUSBDataType 找到设备的vendor ID在Mac系统上配置Android真机调试环境_第3张图片

即vender ID为   0x2a45

7.将vendor ID加入到~/.android/adb_usb.ini文件中

$ vim ~/.android/adb_usb.ini
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x2a45
8.将手机的“开发人员工具”下的“USB调试”打开,restart adb server

$ adb kill-server
$ adb devices
List of devices attached 
76UBBL322BY2	device

9.使用adb命令

$ adb remount
remount failed: Permission denied
$ adb shell
shell@mx4pro:/ $

由于没有root权限,所以remount的时候会出现 Permission denied的提示。

10.在Android studio/Eclipse + Adt上运行app,出现如下画面:

在Mac系统上配置Android真机调试环境_第4张图片

点击“OK”,即可进入真机调试环境。

你可能感兴趣的:(android,adb)