From 8b9fb59200cbc3dfa4cd7c001796a428830463a7 Mon Sep 17 00:00:00 2001 From: Totto16 Date: Thu, 6 Feb 2025 14:13:16 +0100 Subject: [PATCH 1/2] build: update the ndk version for android to 28 --- .github/workflows/android.yml | 2 +- platforms/android/app/build.gradle | 2 +- platforms/build-android.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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/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" From 81f1b14b018731644b438fc5b0fc2c1f4653fcae Mon Sep 17 00:00:00 2001 From: Totto16 Date: Thu, 6 Feb 2025 14:26:18 +0100 Subject: [PATCH 2/2] build: update agp to 8.8.0 --- platforms/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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