mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Fix issue #818
This commit is contained in:
parent
cea9abbc5b
commit
688f5d8a9a
3 changed files with 24 additions and 0 deletions
|
@ -25,6 +25,8 @@
|
|||
<application
|
||||
android:name="app.fedilab.android.MainApplication"
|
||||
android:allowBackup="false"
|
||||
android:dataExtractionRules="@xml/extraction_rules"
|
||||
android:fullBackupContent="@xml/backup_rules"
|
||||
android:configChanges="orientation|screenSize"
|
||||
android:icon="@mipmap/ic_launcher_bubbles"
|
||||
android:label="@string/app_name"
|
||||
|
|
11
app/src/main/res/xml/backup_rules.xml
Normal file
11
app/src/main/res/xml/backup_rules.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<full-backup-content>
|
||||
<include
|
||||
domain="sharedpref"
|
||||
path="."
|
||||
requireFlags="clientSideEncryption,deviceToDeviceTransfer" />
|
||||
<include
|
||||
domain="database"
|
||||
path="."
|
||||
requireFlags="clientSideEncryption,deviceToDeviceTransfer" />
|
||||
</full-backup-content>
|
11
app/src/main/res/xml/extraction_rules.xml
Normal file
11
app/src/main/res/xml/extraction_rules.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<data-extraction-rules>
|
||||
<device-transfer>
|
||||
<include
|
||||
domain="sharedpref"
|
||||
path="." />
|
||||
<include
|
||||
domain="database"
|
||||
path="." />
|
||||
</device-transfer>
|
||||
</data-extraction-rules>
|
Loading…
Reference in a new issue