Skip to content

Commit

Permalink
build: update android ndk to r26b
Browse files Browse the repository at this point in the history
  • Loading branch information
jgriffiths committed Jan 30, 2024
1 parent 816b97f commit f808de9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ the Android NDK. The script `tools/android_helpers.sh` can be sourced from
the shell or scripts to make it easier to produce builds:

```
$ export ANDROID_NDK=/opt/android-ndk-r23b # r22 is the minimum supported version
$ export ANDROID_NDK=/opt/android-ndk-r26b # r22 is the minimum supported version
$ . ./tools/android_helpers.sh
$ android_get_arch_list
Expand Down
2 changes: 1 addition & 1 deletion contrib/Dockerfile_bullseye
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ COPY bullseye_deps.sh ./deps.sh
COPY requirements.txt ./contrib/requirements.txt
RUN ./deps.sh && rm ./deps.sh
ENV JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64
ENV ANDROID_NDK=/opt/android-ndk-r23b
ENV ANDROID_NDK=/opt/android-ndk-r26b
4 changes: 2 additions & 2 deletions contrib/bullseye_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ pip3 install valgrind-codequality -r contrib/requirements.txt
pushd /opt

if [ -z "$skip_ndk" ]; then
curl -L -o ndk.zip https://dl.google.com/android/repository/android-ndk-r23b-linux.zip
echo "c6e97f9c8cfe5b7be0a9e6c15af8e7a179475b7ded23e2d1c1fa0945d6fb4382 ndk.zip" | sha256sum --check
curl -L -o ndk.zip https://dl.google.com/android/repository/android-ndk-r26b-linux.zip
echo "ad73c0370f0b0a87d1671ed2fd5a9ac9acfd1eb5c43a7fbfbd330f85d19dd632 ndk.zip" | shasum -a 256 -c
unzip ndk.zip
rm ndk.zip
fi
Expand Down

0 comments on commit f808de9

Please sign in to comment.