在Mac系统上配置Android真机调试环境
在Mac系统上配置Android真机调试环境
mac上配置安卓环境还说挺方便的,真机调试也比win上要好一些。win上被各种软件强行安装了xxx助手。
在mac上就了一个干净的感觉。
下载Android studio,然后就可以安装下载sdk了。(as刚出的还不可以的,现在越来越方便了)
环境配置:
1. 安装adb客户端。你可以下载好最新版本的SDK,在platform-tools目录下有adb命令
2. 配置adb命令的环境变量。在.bash_profile中加入
export PATH=$PATH:/Users/huanglin/Library/Android/sdk/platform-tools
(这里需要编辑这个文件,在终端输入 open -s .bash_profile)
如果OS X系统上找不到.bash_profile,可以使用如下命令创建.bash_profile文件
$ touch .bash_profile
3.执行.bash_profile
$ source ~/.bash_profile
(source命令通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录。)
4.检查adb环境变量是否配置成功
$ adb version
Android Debug Bridge version 1.0.32
5.将vendor ID加入到~/.android/adb_usb.ini文件中
这个可以从“关于本机”-“系统报告”-“usb”- 厂商 ID: 0x2717
查看可以使用 vim ~/.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
6.将手机的“开发人员工具”下的“USB调试”打开,restart adb server
$ adb kill-server
$ adb devices
List of devices attached
76UBBL322BY2 device
7.使用adb命令
$ adb remount
remount failed: Permission denied
$ adb shell
shell@mx4pro:/ $
由于没有root权限,所以remount的时候会出现 Permission denied的提示。