Mac 下设置Android 环境变量 NDK

时间:2022-06-02 21:45:32

1. 启动终端Terminal

2. 进入当前用户的home目录

输入cd ~

3. 创建.bash_profile
    输入touch .bash_profile
4. 编辑.bash_profile文件
    输入open -e .bash_profile
.bash_profile 文件内容:

export COCOS2DX_ROOT=/android/cocos2d-2.1beta3-x-2.1.1
export NDK_ROOT=/android/android-ndk-r8d/
export ANDROID_SDK_ROOT=/android/android-sdk/
export PATH=$PATH:$ANDROID_NDK_ROOT/

5. 保存文件,关闭.bash_profile

6. 更新刚配置的环境变量
    输入source .bash_profile

就这样应该就好了。