diff options
author | bunnei <bunneidev@gmail.com> | 2023-06-29 01:30:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 01:30:12 +0200 |
commit | 217e958a95eb1acbe2e2d8afe23820316dfb86ab (patch) | |
tree | 86f0a9e1edf57f79a3c210323cff6f922e5fdff1 /src/android/app/build.gradle.kts | |
parent | Merge pull request #10837 from liamwhite/mali-support (diff) | |
parent | android: Android 14 support (diff) | |
download | yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.tar yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.tar.gz yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.tar.bz2 yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.tar.lz yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.tar.xz yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.tar.zst yuzu-217e958a95eb1acbe2e2d8afe23820316dfb86ab.zip |
Diffstat (limited to '')
-rw-r--r-- | src/android/app/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index bab4f4d0f..9a47e2bd8 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -26,7 +26,7 @@ val autoVersion = (((System.currentTimeMillis() / 1000) - 1451606400) / 10).toIn android { namespace = "org.yuzu.yuzu_emu" - compileSdkVersion = "android-33" + compileSdkVersion = "android-34" ndkVersion = "25.2.9519653" buildFeatures { @@ -51,7 +51,7 @@ android { // TODO If this is ever modified, change application_id in strings.xml applicationId = "org.yuzu.yuzu_emu" minSdk = 30 - targetSdk = 33 + targetSdk = 34 versionName = getGitVersion() // If you want to use autoVersion for the versionCode, create a property in local.properties |