0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 03:52:16 +02:00

Specify full backup rules

"true" isn't a valid value for android:fullBackupContent.
This commit is contained in:
Markus Fisch 2020-02-16 13:36:19 +01:00
parent 362e462c2a
commit 93edde7ed1
2 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,7 @@
tools:ignore="UnusedAttribute"
android:name=".app.BinaryEyeApp"
android:allowBackup="true"
android:fullBackupContent="true"
android:fullBackupContent="@xml/backup_rules"
android:supportsRtl="true"
android:resizeableActivity="true"
android:label="@string/app_name"

View File

@ -0,0 +1,3 @@
<full-backup-content>
<include domain="root" path="."/>
</full-backup-content>