allow encrypted backups. fixes #4190

This commit is contained in:
Daniel Gultsch 2021-10-04 14:17:01 +02:00
parent e664a27cd0
commit 86de21f6a8
2 changed files with 13 additions and 1 deletions

View file

@ -52,7 +52,8 @@
<application
android:allowBackup="false"
android:allowBackup="true"
android:fullBackupContent="@xml/backup_content"
android:appCategory="social"
android:hardwareAccelerated="true"
android:icon="@mipmap/new_launcher"

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<include
domain="sharedpref"
path="."
requireFlags="clientSideEncryption" />
<include
domain="database"
path="."
requireFlags="clientSideEncryption" />
</full-backup-content>