summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-05-22 20:14:48 -0400
committerbunnei <bunneidev@gmail.com>2023-06-03 00:06:03 -0700
commit116e2b5f020af0967081968206c76e85b9248597 (patch)
treeb0c9a55347c0e3421891fc840b81f4ba1206aacf
parent7812de4adeb9530fa5591d3d6e42cd610e5231cc (diff)
android: Enable onBackInvokedCallback
For now this enables the ability to see the new Android 13 back gesture animations but later we can create custom animations that follow the back gesture.
-rw-r--r--src/android/app/src/main/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml
index ae473ae3a..aed7f9dc4 100644
--- a/src/android/app/src/main/AndroidManifest.xml
+++ b/src/android/app/src/main/AndroidManifest.xml
@@ -28,7 +28,8 @@
android:banner="@drawable/ic_launcher"
android:extractNativeLibs="true"
android:fullBackupContent="@xml/data_extraction_rules"
- android:dataExtractionRules="@xml/data_extraction_rules_api_31">
+ android:dataExtractionRules="@xml/data_extraction_rules_api_31"
+ android:enableOnBackInvokedCallback="true">
<activity
android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"