fix: exclude more domains from being backed up by the system (#4773)

tries* to fix #3465
This commit is contained in:
Lucas 2025-06-02 09:17:43 -03:00 committed by GitHub
parent 708ee3fd1b
commit 2e2c40b999
2 changed files with 16 additions and 3 deletions

View file

@ -9,4 +9,8 @@
--> -->
<full-backup-content> <full-backup-content>
<exclude domain="root" path="." /> <exclude domain="root" path="." />
<exclude domain="file" path="." />
<exclude domain="database" path="." />
<exclude domain="sharedpref" path="." />
<exclude domain="external" path="."/>
</full-backup-content> </full-backup-content>

View file

@ -9,9 +9,18 @@
--> -->
<data-extraction-rules> <data-extraction-rules>
<cloud-backup> <cloud-backup>
<exclude domain="root" path="." /> <exclude domain="root" path="."/>
<exclude domain="file" path="."/>
<exclude domain="database" path="."/>
<exclude domain="sharedpref" path="."/>
<exclude domain="external" path="."/>
</cloud-backup> </cloud-backup>
<device-transfer> <device-transfer>
<exclude domain="root" path="." /> <exclude domain="root" path="."/>
<exclude domain="file" path="."/>
<exclude domain="database" path="."/>
<exclude domain="sharedpref" path="."/>
<exclude domain="external" path="."/>
</device-transfer> </device-transfer>
</data-extraction-rules> </data-extraction-rules>