Browse Source

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.
nce_cpp
Charles Lombardo 3 years ago
committed by bunnei
parent
commit
bb48ac9fe3
  1. 3
      src/android/app/src/main/AndroidManifest.xml

3
src/android/app/src/main/AndroidManifest.xml

@ -28,7 +28,8 @@
android:banner="@drawable/ic_launcher" android:banner="@drawable/ic_launcher"
android:extractNativeLibs="true" android:extractNativeLibs="true"
android:fullBackupContent="@xml/data_extraction_rules" 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 <activity
android:name="org.yuzu.yuzu_emu.ui.main.MainActivity" android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"

Loading…
Cancel
Save