2019-06-18 17:39:46 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-14 17:47:01 -03:00
|
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
2019-12-06 12:33:50 -03:00
|
|
|
<!--
|
|
|
|
Normally, restoring from backup is only available during initial device setup.
|
|
|
|
You can make it always available at your own risk.
|
|
|
|
Keep in mind that the Auto-Restore feature works independently from this.
|
2019-12-06 12:21:49 -03:00
|
|
|
|
2019-12-06 12:33:50 -03:00
|
|
|
Launch an intent with the action "com.stevesoltys.seedvault.RESTORE_BACKUP"
|
|
|
|
to trigger restore during device setup.
|
|
|
|
-->
|
|
|
|
<bool name="show_restore_in_settings">false</bool>
|
|
|
|
|
2020-10-15 16:12:51 -03:00
|
|
|
<!--
|
|
|
|
Add only storage here that is also available
|
|
|
|
when restoring from backup (e.g. initial device setup)
|
|
|
|
-->
|
2020-09-14 17:47:01 -03:00
|
|
|
<string-array name="storage_authority_whitelist" tools:ignore="InconsistentArrays">
|
2019-12-06 12:21:49 -03:00
|
|
|
<item>com.android.externalstorage.documents</item>
|
|
|
|
<item>org.nextcloud.documents</item>
|
|
|
|
</string-array>
|
|
|
|
|
2020-10-15 16:12:51 -03:00
|
|
|
<!--
|
|
|
|
Android App Bundles split up the app into several APKs.
|
|
|
|
We always back up all the available split APKs
|
|
|
|
and do a compatibility check when re-installing them.
|
|
|
|
If a backed up split is not compatible, the re-install will fail
|
|
|
|
and the user will be given the opportunity to install the app manually before data restore.
|
|
|
|
Unknown splits are treated as compatible as we haven't yet seen a case
|
|
|
|
where this would cause a problem such as an app crashing when starting it after re-install.
|
|
|
|
However, if you prefer to be on the safe side, you can set this to true,
|
|
|
|
to only install unknown splits if they come from the same device.
|
|
|
|
-->
|
|
|
|
<bool name="re_install_unknown_splits_only_on_same_device">false</bool>
|
|
|
|
|
2019-06-18 17:39:46 -03:00
|
|
|
</resources>
|