23 lines
991 B
XML
23 lines
991 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
BACKUP RULES - ALLOWLIST APPROACH
|
|
|
|
The relationship app uses allowlist (whitelist) backup rules for security.
|
|
Only explicitly listed items may be backed up. Any new storage (databases,
|
|
shared preferences, DataStore files, etc.) must be manually evaluated and
|
|
added to this allowlist if backup is safe and desired.
|
|
|
|
By default, no app data is backed up. Sensitive items like databases,
|
|
shared preferences, and DataStore files are excluded.
|
|
|
|
To add an item: add a <include> element with appropriate domain/path.
|
|
To exclude an item: add an <exclude> element with appropriate domain/path.
|
|
-->
|
|
<full-backup-content>
|
|
<!-- No items included by default - sensitive data only -->
|
|
<!-- Explicit exclusions for clarity (all default storage types) -->
|
|
<exclude domain="database" path="." />
|
|
<exclude domain="sharedpref" path="." />
|
|
<exclude domain="file" path="." />
|
|
</full-backup-content>
|