manifest: turn on full backups

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-02-28 15:00:04 +05:30
parent 799dd5adbe
commit cf6ff4c315
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 7 additions and 1 deletions

View file

@ -12,7 +12,8 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.DayNight">
android:theme="@style/Theme.AppCompat.DayNight"
android:fullBackupContent="@xml/full_backup_content">
<activity
android:name=".ui.main.MainActivity"
android:label="@string/app_name"

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<!-- Backup SQLDelight generated databases so that saved posts can be restored -->
<include domain="root" path="databases" />
</full-backup-content>