※ Mac です。
ビルドした際に、
Build failed: NDK is not installed
とエラーが出る場合がある。
NDKのインストール
NDKとCMakeをインストールする。
Preferences
-> SDK Tools
タブを開き、以下のチェックボックスにチェックを入れる。
- NDK (Side by Side)
- CMake
OK
を押してインストールする。
NDKのパスとバージョン確認
デフォルトなら、/Library/Android/sdk
内にあるかと思う。
/Users/ユーザー名/Library/Android/sdk/ndk/23.0.7196353
local.propatiesに追記
ビルドしたいプロジェクト内の、local.propaties
にNDKへのパスを追記する。local.propaties
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Wed Apr 14 09:47:31 JST 2021
sdk.dir=/Users/ユーザー名/Library/Android/sdk
+ ndk.dir=/Users/ユーザー名/Library/Android/sdk/ndk/23.0.7196353
ビルドする
うまくいけば、ビルドできる。