We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ba8794 commit d882be3Copy full SHA for d882be3
ui/src/main/AndroidManifest.xml
@@ -37,7 +37,8 @@
37
38
<application
39
android:name=".Application"
40
- android:allowBackup="false"
+ android:allowBackup="true"
41
+ android:fullBackupContent="@xml/backup"
42
android:banner="@mipmap/banner"
43
android:enableOnBackInvokedCallback="true"
44
android:icon="@mipmap/ic_launcher"
ui/src/main/res/xml/backup.xml
@@ -0,0 +1,6 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<full-backup-content>
3
+ <include domain="sharedpref" path="." requireFlags="clientSideEncryption" />
4
+ <include domain="database" path="." requireFlags="clientSideEncryption" />
5
+ <include domain="file" path="." requireFlags="clientSideEncryption" />
6
+</full-backup-content>
0 commit comments