android: Update build configuration and package identifiers

Updates the Android build configuration with several important changes:

- Change application ID from com.antutu.ABenchMark to org.citron.citron_emu
- Upgrade CMake version from 3.31.6 to 4.0.1
- Update Android Gradle plugin from 8.9.0 to 8.9.2
- Add CMAKE_POLICY_VERSION_MINIMUM=3.5 to CMake arguments
- Keep Kotlin version at 1.9.20

These changes align the Android package identifier with the Citron project
and update build tool versions to ensure compatibility with modern Android
development requirements.

Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
Zephyron 2025-04-22 16:58:55 +10:00 committed by Mike Lothian
parent 0bf9615693
commit ff8ce59f90
2 changed files with 3 additions and 2 deletions

View File

@ -105,6 +105,7 @@ android {
} }
resValue("string", "app_name_suffixed", "yuzu") resValue("string", "app_name_suffixed", "yuzu")
isDefault = true
isMinifyEnabled = true isMinifyEnabled = true
isShrinkResources = true isShrinkResources = true
isJniDebuggable = false isJniDebuggable = false

View File

@ -4,8 +4,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins { plugins {
id("com.android.application") version "8.9.0" apply false id("com.android.application") version "8.9.2" apply false
id("com.android.library") version "8.9.0" apply false id("com.android.library") version "8.9.2" apply false
id("org.jetbrains.kotlin.android") version "2.1.20-RC2" apply false id("org.jetbrains.kotlin.android") version "2.1.20-RC2" apply false
} }