I am using Flutter Secure Storage for storing data locally in my Flutter app. I need some of my data to persist even after the user clears app's cache and storage or uninstalls the app.
How do I do it?
I am using Flutter Secure Storage for storing data locally in my Flutter app. I need some of my data to persist even after the user clears app's cache and storage or uninstalls the app.
How do I do it?
Seems like your data auto backup by android side. You can learn more from here
Add this into manifest
file.
<manifest ... >
...
<application android:allowBackup="false" ... >
...
</application>
</manifest>