本文參考了別人的文章,詳細步驟:
一、啟動終端Terminal
二、輸入 pico .bash_profile 回車。
三、輸入以下內容【路徑依實情而定】:
[php]
export ANDROID_SDK_ROOT=/Users/apple/Desktop/adt-bundle/sdk
export ANDROID_NDK_ROOT=/Users/apple/Documents/Android/android-ndk-r8e
export PATH=$PATH:$ANDROID_SDK_ROOT
export PATH=$PATH:$ANDROID_NDK_ROOT
export ANDROID_TOOL=/Users/apple/Desktop/adt-bundle/sdk/platform-tools
export PAHT=$PATH:$ANDROID_TOOL
export ANDROID_SDK_ROOT=/Users/apple/Desktop/adt-bundle/sdk
export ANDROID_NDK_ROOT=/Users/apple/Documents/Android/android-ndk-r8e
export PATH=$PATH:$ANDROID_SDK_ROOT
export PATH=$PATH:$ANDROID_NDK_ROOT
export ANDROID_TOOL=/Users/apple/Desktop/adt-bundle/sdk/platform-tools
export PAHT=$PATH:$ANDROID_TOOL
四、 注意路徑最好不要有空格!輸入完成之後,Control+x 進行保存,然後提示是否保存,輸入 y ,最後回車即可!
五、檢驗路徑步驟:關閉你的“終端”,重新打開,如果之前路徑配置有問題,那麼重新打開的“終端”將出現如下提示:-bash: exoort: command not found 如果沒有此類提示,OK說明路徑配置完成!
六、輸入ndk-build,有反應說明配置路徑成功。
七、cd 到要編譯的項目內,ndk-build,編譯成功。OK,搞定之。