Disable backup explicitly

I don't think it is possible to restore
encrypted shared preferences from backup.
This commit is contained in:
Kirill Kamakin
2022-06-12 18:41:55 +02:00
parent 9944948f55
commit 348b7de6cc
3 changed files with 31 additions and 5 deletions

View File

@@ -7,15 +7,16 @@
<application
android:name="gq.kirmanak.mealient.App"
android:allowBackup="true"
android:fullBackupOnly="true"
android:networkSecurityConfig="@xml/network_security_config"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/full_backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
tools:ignore="UnusedAttribute"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
tools:targetApi="s">
<activity
android:name=".ui.activity.MainActivity"
android:exported="true">