summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Abandoned Cart2023-06-29 07:19:44 -0400
committerGravatar Abandoned Cart2023-06-29 07:32:12 -0400
commit13506e7782d2f8e5704d0369819bdae37c9b31af (patch)
tree14615376a1e326b10400a2c14fbff50a96f0e1c6
parentMerge pull request #10945 from t895/android-14 (diff)
downloadyuzu-13506e7782d2f8e5704d0369819bdae37c9b31af.tar.gz
yuzu-13506e7782d2f8e5704d0369819bdae37c9b31af.tar.xz
yuzu-13506e7782d2f8e5704d0369819bdae37c9b31af.zip
android: Suppress a known incompatibility
Android Gradle plugin 8.0.2 is designed for API 33, but a newer plugin hasn't been released yet. The warning message is rather extravagant, but also suggests adding this property if you are aware of the risks.
-rw-r--r--src/android/gradle.properties3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/android/gradle.properties b/src/android/gradle.properties
index e2f278f33..4fca1b576 100644
--- a/src/android/gradle.properties
+++ b/src/android/gradle.properties
@@ -15,3 +15,6 @@ android.useAndroidX=true
15kotlin.code.style=official 15kotlin.code.style=official
16kotlin.parallel.tasks.in.project=true 16kotlin.parallel.tasks.in.project=true
17android.defaults.buildfeatures.buildconfig=true 17android.defaults.buildfeatures.buildconfig=true
18
19# Android Gradle plugin 8.0.2
20android.suppressUnsupportedCompileSdk=34