From 3376e86e47f0c0422818bdf608d48ba95698143a Mon Sep 17 00:00:00 2001 From: Producdevity Date: Sat, 12 Jul 2025 21:11:34 +0200 Subject: [PATCH] fix: suppress warning for predictive back gesture * src/android/app/src/main/AndroidManifest.xml: Set targetApi to 33 and enable onBackInvokedCallback to support the Android 13 predictive back gesture. Also, add the tools namespace. --- src/android/app/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index 198838f6ef..d31deaa355 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml @@ -12,7 +12,7 @@ SPDX-FileCopyrightText: Eden Emulator Project SPDX-License-Identifier: GPL-3.0-or-later --> - + @@ -42,6 +42,7 @@ SPDX-License-Identifier: GPL-3.0-or-later android:banner="@drawable/tv_banner" android:fullBackupContent="@xml/data_extraction_rules" android:dataExtractionRules="@xml/data_extraction_rules_api_31" + tools:targetApi="33" android:enableOnBackInvokedCallback="true">