android: Bump NDK and AGP versions

NDK: 27.1.x --> 27.3.x
AGP: 8.13.1 --> 8.13.2
This commit is contained in:
OpenSauce04 2026-04-26 12:54:55 +01:00 committed by OpenSauce
parent 5d84dfed91
commit 4fa793b945
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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"
}