1、启动终端Terminal
2、进入当前用户的home目录
输入 cd ~ (注意中间的空格)
3、创建 .bash_profile 文件
输入 touch .bash_profile
4、编辑 .bash_profile文件
输入 open -e .bash_profile
.bash_profile文件内容
export NDK_ROOT=/Users/lilycai/Documents/adt-bundle-mac-x86_64-20140702/Android-ndk-r10
export SDK_ROOT=/Users/lilycai/Documents/adt-bundle-mac-x86_64-20140702/sdk/platform-tools:/Users/lilycai/Documents/adt-bundle-mac-x86_64-20140702/sdk/tools
export PATH=$PATH:$NDK_ROOT/
export PATH=$PATH:$SDK_ROOT/
前两句是ndk和sdk所在的目录 其中sdk配置了platform-tools和tools两个目录,中间用冒号隔开
后面两句在path中假如ndk和sdk的路径
5、保存并关闭
6、更新刚配置的环境变量
输入 source .bash_profile
7、测试
输入ndk-build
出现下叙即为成功
android NDK: Could not find application project directory !
Android NDK: Please define the NDK_PROJECT_PATH variable to point to it.
输入 adb shell 在有设备的情况下出现下述即为成功
root@WX-F1:/ #