iOS・Android

【Android】Build failed: NDK is not installed エラーの解消方法(MacOS)

iOS・Android
この記事は約2分で読めます。

※ Mac です。

ビルドした際に、

Build failed: NDK is not installed

とエラーが出る場合がある。

NDKのインストール

NDKとCMakeをインストールする。

スクリーンショット 2021-04-14 10.10.59.png

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

ビルドする

うまくいけば、ビルドできる。