-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16699 from wordpress-mobile/issue/16067-android12…
…-backup-restore-xml Android 12: Backup and restore - New format for the XML configuration
- Loading branch information
Showing
3 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<full-backup-content> | ||
<include domain="database" path="wordpress"/> | ||
<include domain="database" path="persistentedittext.db"/> | ||
<include domain="sharedpref" path="self_signed_certs_truststore.bks"/> | ||
<include domain="sharedpref" path="org.wordpress.android_preferences.xml"/> | ||
</full-backup-content> | ||
<data-extraction-rules> | ||
<cloud-backup> | ||
<include | ||
domain="database" | ||
path="wordpress" /> | ||
<include | ||
domain="database" | ||
path="persistentedittext.db" /> | ||
<include | ||
domain="sharedpref" | ||
path="self_signed_certs_truststore.bks" /> | ||
<include | ||
domain="sharedpref" | ||
path="org.wordpress.android_preferences.xml" /> | ||
</cloud-backup> | ||
<device-transfer> | ||
<include | ||
domain="database" | ||
path="wordpress" /> | ||
<include | ||
domain="database" | ||
path="persistentedittext.db" /> | ||
<include | ||
domain="sharedpref" | ||
path="self_signed_certs_truststore.bks" /> | ||
<include | ||
domain="sharedpref" | ||
path="org.wordpress.android_preferences.xml" /> | ||
</device-transfer> | ||
</data-extraction-rules> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<full-backup-content> | ||
<include domain="database" path="wordpress"/> | ||
<include domain="database" path="persistentedittext.db"/> | ||
<include domain="sharedpref" path="self_signed_certs_truststore.bks"/> | ||
<include domain="sharedpref" path="org.wordpress.android_preferences.xml"/> | ||
</full-backup-content> |