Skip to content

Commit 03fecb3

Browse files
authored
build: bumped Android NDK to r25c (#361)
1 parent 8bf1b0c commit 03fecb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: install-ndk.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
set -e;
66

7-
NDK_VERSION=r21e
7+
NDK_VERSION=r25c
88

99
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
1010
project_path="$(readlink -f "$script_dir/.")"
@@ -17,7 +17,7 @@ if [ -z "$ANDROID_NDK_HOME" ]; then
1717
else
1818
echo 'ANDROID_NDK_HOME not set, downloading NDK...';
1919
# Download Linux NDK or macOS NDK, depending on OS
20-
wget --no-verbose -O android-ndk.zip https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-$platform-x86_64.zip;
20+
wget --no-verbose -O android-ndk.zip https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-$platform.zip;
2121
unzip -q -d NDK android-ndk.zip;
2222
ls NDK;
2323
mv NDK/*/* NDK/;

0 commit comments

Comments
 (0)