summaryrefslogtreecommitdiff
path: root/src/android
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-04-04 21:02:31 -0400
committerGravatar bunnei2023-06-03 00:05:49 -0700
commitf5055ca930de2ae6e8ef54833fd3aa56d2b3828f (patch)
treeef4f4e8366968e452afb4cb3c0c1c0c212d7c902 /src/android
parentandroid: Enable retaining app data after uninstall (diff)
downloadyuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.gz
yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.tar.xz
yuzu-f5055ca930de2ae6e8ef54833fd3aa56d2b3828f.zip
android: Backup shared preferences where applicable
Diffstat (limited to 'src/android')
-rw-r--r--src/android/app/src/main/res/xml/data_extraction_rules.xml4
-rw-r--r--src/android/app/src/main/res/xml/data_extraction_rules_api_31.xml8
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 @@
13 domain="external" 13 domain="external"
14 path="." /> 14 path="." />
15 15
16 <include
17 domain="sharedpref"
18 path="." />
19
16</full-backup-content> 20</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 @@
14 domain="external" 14 domain="external"
15 path="." /> 15 path="." />
16 16
17 <include
18 domain="sharedpref"
19 path="." />
20
17 </cloud-backup> 21 </cloud-backup>
18 22
19 <device-transfer> 23 <device-transfer>
@@ -30,6 +34,10 @@
30 domain="external" 34 domain="external"
31 path="." /> 35 path="." />
32 36
37 <include
38 domain="sharedpref"
39 path="." />
40
33 </device-transfer> 41 </device-transfer>
34 42
35</data-extraction-rules> 43</data-extraction-rules>