diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-05-23 02:14:48 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:06:03 +0200 |
commit | 116e2b5f020af0967081968206c76e85b9248597 (patch) | |
tree | b0c9a55347c0e3421891fc840b81f4ba1206aacf /src/android | |
parent | android: Remove deprecated use of onBackPressed() (diff) | |
download | yuzu-116e2b5f020af0967081968206c76e85b9248597.tar yuzu-116e2b5f020af0967081968206c76e85b9248597.tar.gz yuzu-116e2b5f020af0967081968206c76e85b9248597.tar.bz2 yuzu-116e2b5f020af0967081968206c76e85b9248597.tar.lz yuzu-116e2b5f020af0967081968206c76e85b9248597.tar.xz yuzu-116e2b5f020af0967081968206c76e85b9248597.tar.zst yuzu-116e2b5f020af0967081968206c76e85b9248597.zip |
Diffstat (limited to '')
-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" |