1

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?

Shrijan Regmi
  • 450
  • 5
  • 10

1 Answers1

-1

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>
Harsh Sureja
  • 1,052
  • 1
  • 9
  • 22