diff options
author | Charles Lombardo <[email protected]> | 2023-05-22 20:14:48 -0400 |
---|---|---|
committer | bunnei <[email protected]> | 2023-06-03 00:06:03 -0700 |
commit | 116e2b5f020af0967081968206c76e85b9248597 (patch) | |
tree | b0c9a55347c0e3421891fc840b81f4ba1206aacf /src | |
parent | 7812de4adeb9530fa5591d3d6e42cd610e5231cc (diff) | |
download | yuzu-android-116e2b5f020af0967081968206c76e85b9248597.tar.gz yuzu-android-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.xml | 3 |
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" |