diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-04-05 03:02:31 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:49 +0200 |
commit | f5055ca930de2ae6e8ef54833fd3aa56d2b3828f (patch) | |
tree | ef4f4e8366968e452afb4cb3c0c1c0c212d7c902 /src | |
parent | android: Enable retaining app data after uninstall (diff) | |
download | yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.gz yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.bz2 yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.lz yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.xz yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.zst yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/android/app/src/main/res/xml/data_extraction_rules.xml | 4 | ||||
-rw-r--r-- | src/android/app/src/main/res/xml/data_extraction_rules_api_31.xml | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/xml/data_extraction_rules.xml b/src/android/app/src/main/res/xml/data_extraction_rules.xml index 87a5da6a4..c10efcf56 100644 --- a/src/android/app/src/main/res/xml/data_extraction_rules.xml +++ b/src/android/app/src/main/res/xml/data_extraction_rules.xml @@ -13,4 +13,8 @@ domain="external" path="." /> + <include + domain="sharedpref" + path="." /> + </full-backup-content> diff --git a/src/android/app/src/main/res/xml/data_extraction_rules_api_31.xml b/src/android/app/src/main/res/xml/data_extraction_rules_api_31.xml index 637fc9e67..3ff6cc170 100644 --- a/src/android/app/src/main/res/xml/data_extraction_rules_api_31.xml +++ b/src/android/app/src/main/res/xml/data_extraction_rules_api_31.xml @@ -14,6 +14,10 @@ domain="external" path="." /> + <include + domain="sharedpref" + path="." /> + </cloud-backup> <device-transfer> @@ -30,6 +34,10 @@ domain="external" path="." /> + <include + domain="sharedpref" + path="." /> + </device-transfer> </data-extraction-rules> |