diff options
Diffstat (limited to 'app/src/main/res/xml')
| -rw-r--r-- | app/src/main/res/xml/backup_rules.xml | 25 | ||||
| -rw-r--r-- | app/src/main/res/xml/backup_rules_legacy.xml | 12 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml new file mode 100644 index 0000000..b853a8d --- /dev/null +++ b/app/src/main/res/xml/backup_rules.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<data-extraction-rules> + <cloud-backup> + <exclude domain="root" path="." /> + <exclude domain="file" path="." /> + <exclude domain="database" path="." /> + <exclude domain="sharedpref" path="." /> + <exclude domain="external" path="." /> + <exclude domain="device_root" path="." /> + <exclude domain="device_file" path="." /> + <exclude domain="device_database" path="." /> + <exclude domain="device_sharedpref" path="." /> + </cloud-backup> + <device-transfer> + <exclude domain="root" path="." /> + <exclude domain="file" path="." /> + <exclude domain="database" path="." /> + <exclude domain="sharedpref" path="." /> + <exclude domain="external" path="." /> + <exclude domain="device_root" path="." /> + <exclude domain="device_file" path="." /> + <exclude domain="device_database" path="." /> + <exclude domain="device_sharedpref" path="." /> + </device-transfer> +</data-extraction-rules> diff --git a/app/src/main/res/xml/backup_rules_legacy.xml b/app/src/main/res/xml/backup_rules_legacy.xml new file mode 100644 index 0000000..49fc980 --- /dev/null +++ b/app/src/main/res/xml/backup_rules_legacy.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<full-backup-content> + <exclude domain="root" path="." /> + <exclude domain="file" path="." /> + <exclude domain="database" path="." /> + <exclude domain="sharedpref" path="." /> + <exclude domain="external" path="." /> + <exclude domain="device_root" path="." /> + <exclude domain="device_file" path="." /> + <exclude domain="device_database" path="." /> + <exclude domain="device_sharedpref" path="." /> +</full-backup-content> |