diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 78c7f7c3..03c9b164 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -46,7 +46,7 @@ jobs: - name: Setup NDK run: | - sdkmanager --install "ndk;28.0.12916984" + sdkmanager --install "ndk;28.0.13004108" - name: Build native libraries run: | diff --git a/platforms/android/app/build.gradle b/platforms/android/app/build.gradle index 4402992c..4bc7d9d1 100644 --- a/platforms/android/app/build.gradle +++ b/platforms/android/app/build.gradle @@ -248,7 +248,7 @@ android { } compileSdkVersion 35 - ndkVersion "28.0.12916984" + ndkVersion "28.0.13004108" defaultConfig { if (buildAsApplication) { applicationId "com.github.oopetris" diff --git a/platforms/android/build.gradle b/platforms/android/build.gradle index 57377968..7979d9b5 100644 --- a/platforms/android/build.gradle +++ b/platforms/android/build.gradle @@ -6,7 +6,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:8.7.2' + classpath 'com.android.tools.build:gradle:8.8.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/platforms/build-android.sh b/platforms/build-android.sh index 48c068fc..f59f383c 100755 --- a/platforms/build-android.sh +++ b/platforms/build-android.sh @@ -6,8 +6,8 @@ if [ ! -d "toolchains" ]; then mkdir -p toolchains fi -export NDK_VER_DOWNLOAD="r28-beta3" -export NDK_VER_DESC="r28-beta3" +export NDK_VER_DOWNLOAD="r28" +export NDK_VER_DESC="r28" export BASE_PATH="$PWD/toolchains/android-ndk-$NDK_VER_DESC" export ANDROID_NDK_HOME="$BASE_PATH"