diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-04-04 21:02:31 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:05:49 -0700 |
commit | f5055ca930de2ae6e8ef54833fd3aa56d2b3828f (patch) | |
tree | ef4f4e8366968e452afb4cb3c0c1c0c212d7c902 | |
parent | 940dbdcff22739345dfbd34a043e7703143f43ac (diff) |
android: Backup shared preferences where applicable
-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> |