Skip to content

Commit

Permalink
Update android ndk version to latest LTS(r23c): https://developer.and…
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Jun 21, 2022
1 parent f292633 commit 00f6fd9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ci/android-install-ndk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,30 @@

set -ex

NDK=android-ndk-r21d
wget --tries=20 -q https://dl.google.com/android/repository/${NDK}-linux-x86_64.zip
unzip -q ${NDK}-linux-x86_64.zip
NDK=android-ndk-r23c
wget --tries=20 -q https://dl.google.com/android/repository/${NDK}-linux.zip
unzip -q ${NDK}-linux.zip

case "$1" in
arm)
arch=arm
api=28
api=31
;;
armv7)
arch=arm
api=28
api=31
;;
aarch64)
arch=arm64
api=28
api=31
;;
i686)
arch=x86
api=28
api=31
;;
x86_64)
arch=x86_64
api=28
api=31
;;
*)
echo "invalid arch: $1"
Expand Down

0 comments on commit 00f6fd9

Please sign in to comment.