We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54628b commit d95ae0aCopy full SHA for d95ae0a
ui/src/main/AndroidManifest.xml
@@ -40,7 +40,8 @@
40
41
<application
42
android:name=".Application"
43
- android:allowBackup="false"
+ android:allowBackup="true"
44
+ android:fullBackupContent="@xml/backup"
45
android:banner="@mipmap/banner"
46
android:enableOnBackInvokedCallback="true"
47
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