Bump ndk to 25

This commit is contained in:
Simon Frei 2022-11-27 21:33:37 +01:00
parent c9ea58cfca
commit 6de42634b3
No known key found for this signature in database
GPG Key ID: 7C31D23ECB1006F3
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ buildscript {
ext {
// Cannot be called "ndkVersion" as that leads to naming collision
// Changes to this value must be reflected in `./docker/Dockerfile`
ndkVersionShared = '23.2.8568313'
ndkVersionShared = '25.1.8937393'
}
repositories {
google()

View File

@ -27,7 +27,7 @@ ARG SDKMANAGER="${ANDROID_HOME}/cmdline-tools/bin/sdkmanager --sdk_root=${ANDROI
RUN yes | $SDKMANAGER --licenses > /dev/null
# NDK version
ENV NDK_VERSION 23.2.8568313
ENV NDK_VERSION 25.1.8937393
# Install other android packages, including NDK
RUN $SDKMANAGER tools platform-tools "build-tools;31.0.0" "platforms;android-31" "extras;android;m2repository" "ndk;${NDK_VERSION}"