feat: store critical data in secure store (#821)

This commit is contained in:
lollipopkit🏳️‍⚧️
2025-07-17 18:26:34 +08:00
committed by GitHub
parent c6439673b8
commit 263d4eabb4
15 changed files with 93 additions and 45 deletions

View File

@@ -14,7 +14,8 @@
android:label="@string/app_name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
android:allowBackup="true"
android:allowBackup="true"
android:fullBackupContent="@xml/backup_rules"
android:hasFragileUserData="true"
android:restoreAnyVersion="true"
tools:targetApi="q">

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<exclude domain="sharedpref" path="FlutterSecureStorage"/>
</full-backup-content>