Android: Update dependencies and build tools

Update Android dependencies and build tools to their latest available versions.

Rename the GameCube save magic constant to avoid a collision with the NDK 30 ARM64 signal context header.
This commit is contained in:
Simonx22
2026-07-12 10:17:29 -04:00
parent 6de526c684
commit aeb3fec03a
10 changed files with 107 additions and 137 deletions

View File

@@ -7,8 +7,8 @@ plugins {
@Suppress("UnstableApiUsage")
android {
compileSdk = 36
ndkVersion = "29.0.14206865"
compileSdk = 37
ndkVersion = "30.0.15729638"
buildFeatures {
compose = true
@@ -38,7 +38,7 @@ android {
defaultConfig {
applicationId = "org.dolphinemu.dolphinemu"
minSdk = 24
targetSdk = 36
targetSdk = 37
versionCode = getBuildVersionCode()
@@ -118,12 +118,6 @@ android {
}
}
kotlin {
compilerOptions {
freeCompilerArgs.add("-Xannotation-default-target=param-property")
}
}
dependencies {
baselineProfile(project(":benchmark"))
coreLibraryDesugaring(libs.desugar.jdk.libs)