diff --git a/scripts/android-setup.sh b/scripts/android-setup.sh index 71c2e923..d84ec9e1 100644 --- a/scripts/android-setup.sh +++ b/scripts/android-setup.sh @@ -32,10 +32,10 @@ function installAndroidSDK { rm $TMP fi - if [[ ! -d "$ANDROID_NDK_REPOSITORY/android-ndk-r13b" ]]; then + if [[ ! -d "$ANDROID_NDK_REPOSITORY/android-ndk-r15c" ]]; then TMP=/tmp/ndk$$.zip mkdir -p "$ANDROID_NDK_REPOSITORY" - download 'https://dl.google.com/android/repository/android-ndk-r13b-darwin-x86_64.zip' $TMP + download 'https://dl.google.com/android/repository/android-ndk-r15c-linux-x86_64.zip' $TMP unzip -qod "$ANDROID_NDK_REPOSITORY" "$TMP" rm $TMP fi