summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-05-22 20:14:48 -0400
committerGravatar bunnei2023-06-03 00:06:03 -0700
commit116e2b5f020af0967081968206c76e85b9248597 (patch)
treeb0c9a55347c0e3421891fc840b81f4ba1206aacf /src
parentandroid: Remove deprecated use of onBackPressed() (diff)
downloadyuzu-116e2b5f020af0967081968206c76e85b9248597.tar.gz
yuzu-116e2b5f020af0967081968206c76e85b9248597.tar.xz
yuzu-116e2b5f020af0967081968206c76e85b9248597.zip
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.
Diffstat (limited to 'src')
-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 @@
28 android:banner="@drawable/ic_launcher" 28 android:banner="@drawable/ic_launcher"
29 android:extractNativeLibs="true" 29 android:extractNativeLibs="true"
30 android:fullBackupContent="@xml/data_extraction_rules" 30 android:fullBackupContent="@xml/data_extraction_rules"
31 android:dataExtractionRules="@xml/data_extraction_rules_api_31"> 31 android:dataExtractionRules="@xml/data_extraction_rules_api_31"
32 android:enableOnBackInvokedCallback="true">
32 33
33 <activity 34 <activity
34 android:name="org.yuzu.yuzu_emu.ui.main.MainActivity" 35 android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"