mac 下搭建 NDK 環境
1. 下載 NDK 包,解壓得到:
android-ndk-r14b,
2. 進入目錄找到 ndk-build. 執行 ./ndk-build, 輸出:
Android NDK: Could not find application project directory !
Android NDK: Please define the NDK_PROJECT_PATH variable to point to it.
/Users/yi/study/ndk/android-ndk-r14b/build/core/build-local.mk:151: *** Android NDK: Aborting.Stop.
3. 配置環境變數
3.1 啟動終端Terminal
3.2 輸入 cd ~ (注意中間的空格,進入根目錄)
3.3 建立 .bash_profile 檔案
輸入 touch .bash_profile
3.4 編輯 .bash_profile檔案
sudo vi .bash_profile
.bash_profile檔案內容
export PATH=${PATH}:/Users/yi/study/ndk/android-ndk-r14b/
ANDROID_NDK_ROOT=/Users/yi/study/ndk/android-ndk-r14b/
export ANDROID_NDK_ROOT
3.5 儲存並關閉
3.6 更新剛配置的環境變數
輸入 source .bash_profile
4 測試
輸入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 在有裝置的情況下出現下述即為成功
注意:兩處紅色的部分很關鍵,開始一直配置不生效,執行這兩步後成功。