From 4fa793b945fb7729a2e17e607698a0dfff922dd0 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sun, 26 Apr 2026 12:54:55 +0100 Subject: [PATCH] android: Bump NDK and AGP versions NDK: 27.1.x --> 27.3.x AGP: 8.13.1 --> 8.13.2 --- src/android/app/build.gradle.kts | 3 +-- src/android/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index 5e2dc1960..733656c0e 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -24,12 +24,11 @@ val abiFilter = listOf("arm64-v8a", "x86_64") val downloadedJniLibsPath = "${layout.buildDirectory.get().asFile.path}/downloadedJniLibs" -@Suppress("UnstableApiUsage") android { namespace = "org.citra.citra_emu" compileSdkVersion = "android-35" - ndkVersion = "27.1.12297006" + ndkVersion = "27.3.13750724" compileOptions { sourceCompatibility = JavaVersion.VERSION_17 diff --git a/src/android/build.gradle.kts b/src/android/build.gradle.kts index a0d43cb49..194907da3 100644 --- a/src/android/build.gradle.kts +++ b/src/android/build.gradle.kts @@ -4,8 +4,8 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.13.1" apply false - id("com.android.library") version "8.13.1" apply false + id("com.android.application") version "8.13.2" apply false + id("com.android.library") version "8.13.2" apply false id("org.jetbrains.kotlin.android") version "2.0.20" apply false id("org.jetbrains.kotlin.plugin.serialization") version "2.0.20" }