We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf1b0c commit 03fecb3Copy full SHA for 03fecb3
install-ndk.sh
@@ -4,7 +4,7 @@
4
5
set -e;
6
7
-NDK_VERSION=r21e
+NDK_VERSION=r25c
8
9
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
10
project_path="$(readlink -f "$script_dir/.")"
@@ -17,7 +17,7 @@ if [ -z "$ANDROID_NDK_HOME" ]; then
17
else
18
echo 'ANDROID_NDK_HOME not set, downloading NDK...';
19
# 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;
+ wget --no-verbose -O android-ndk.zip https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-$platform.zip;
21
unzip -q -d NDK android-ndk.zip;
22
ls NDK;
23
mv NDK/*/* NDK/;
0 commit comments