diff options
| author | 2023-06-29 07:19:44 -0400 | |
|---|---|---|
| committer | 2023-06-29 07:32:12 -0400 | |
| commit | 13506e7782d2f8e5704d0369819bdae37c9b31af (patch) | |
| tree | 14615376a1e326b10400a2c14fbff50a96f0e1c6 | |
| parent | Merge pull request #10945 from t895/android-14 (diff) | |
| download | yuzu-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.properties | 3 |
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 | |||
| 15 | kotlin.code.style=official | 15 | kotlin.code.style=official |
| 16 | kotlin.parallel.tasks.in.project=true | 16 | kotlin.parallel.tasks.in.project=true |
| 17 | android.defaults.buildfeatures.buildconfig=true | 17 | android.defaults.buildfeatures.buildconfig=true |
| 18 | |||
| 19 | # Android Gradle plugin 8.0.2 | ||
| 20 | android.suppressUnsupportedCompileSdk=34 | ||