Bump NDK version

This commit is contained in:
Simon Frei 2023-06-18 16:27:45 +02:00
parent 7674fadeba
commit a13c049180
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 = '25.1.8937393'
ndkVersionShared = '25.2.9519653'
}
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 25.1.8937393
ENV NDK_VERSION 25.2.9519653
# Install other android packages, including NDK
RUN $SDKMANAGER tools platform-tools "build-tools;32.0.0" "platforms;android-32" "extras;android;m2repository" "ndk;${NDK_VERSION}"