This commit is contained in:
Thomas 2023-03-02 14:19:41 +01:00
parent cea9abbc5b
commit 688f5d8a9a
3 changed files with 24 additions and 0 deletions

View File

@ -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"

View 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>

View 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>