From 8e5bb7aa8ac0a1ddbf890967554fce977cdd8ce2 Mon Sep 17 00:00:00 2001 From: Reg Tiangha Date: Sat, 7 Sep 2024 13:43:01 -0600 Subject: [PATCH] Android: Change target from Android 14 to 15 --- src/android/app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index cc711139d..9c64d17da 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -28,7 +28,7 @@ val downloadedJniLibsPath = "${buildDir}/downloadedJniLibs" android { namespace = "org.citra.citra_emu" - compileSdkVersion = "android-34" + compileSdkVersion = "android-35" ndkVersion = "27.1.12297006" compileOptions { @@ -63,7 +63,7 @@ android { // TODO If this is ever modified, change application_id in strings.xml applicationId = "org.citra.citra_emu" minSdk = 28 - targetSdk = 34 + targetSdk = 35 versionCode = autoVersion versionName = getGitVersion()