-
-
Notifications
You must be signed in to change notification settings - Fork 402
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 #935 from UweTrottmann/android-12-device-2-device-…
…backup Android 12: add device-to-device backup rules, include database.
- Loading branch information
Showing
5 changed files
with
51 additions
and
11 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
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,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- Configures auto-backup for Android 6 up to 11. --> | ||
<!-- https://developer.android.com/guide/topics/data/autobackup --> | ||
<full-backup-content> | ||
<!-- Including the database, it likely won't exceed the 25 MB limit for Cloud. --> | ||
<!-- E.g. 2000 episodes (~15 shows) consume around 2 MB. --> | ||
<include domain="database" /> | ||
|
||
<!-- Include all settings files (app, extensions, widget, Trakt), | ||
might include some unnecessary ones (Crashlytics) but all are < 1 KB. --> | ||
<include domain="sharedpref" /> | ||
|
||
<!-- Do not include automatic backups to keep below 25 MB limit for CLoud. --> | ||
|
||
</full-backup-content> |
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,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- Configures auto-backup for Android 12+. --> | ||
<!-- https://developer.android.com/guide/topics/data/autobackup --> | ||
<data-extraction-rules> | ||
<cloud-backup disableIfNoEncryptionCapabilities="false"> | ||
<!-- Including the database, it likely won't exceed the 25 MB limit for Cloud. --> | ||
<!-- E.g. 2000 episodes (~15 shows) consume around 2 MB. --> | ||
<include domain="database" /> | ||
|
||
<!-- Include all settings files (app, extensions, widget, Trakt), | ||
might include some unnecessary ones (Crashlytics) but all are < 1 KB. --> | ||
<include domain="sharedpref" /> | ||
|
||
<!-- Do not include automatic backups to keep below 25 MB limit for CLoud. --> | ||
</cloud-backup> | ||
<device-transfer> | ||
<!-- Include as much as possible as device-to-device transfer has a 2 GB limit. --> | ||
<include domain="database" /> | ||
|
||
<!-- Include all settings files (app, extensions, widget, Trakt), | ||
might include some unnecessary ones (Crashlytics) but all are < 1 KB. --> | ||
<include domain="sharedpref" /> | ||
|
||
<!-- Include automatic backup files. --> | ||
<include | ||
domain="external" | ||
path="Backups/" /> | ||
</device-transfer> | ||
</data-extraction-rules> |
This file was deleted.
Oops, something went wrong.