Crypho / cordova-plugin-secure-storage

Secure storage plugin for Apache Cordova
MIT License
278 stars 269 forks source link

Ionic 3 #150

Closed craidencool13 closed 6 years ago

craidencool13 commented 6 years ago

Hi, I am currently using Ionic 3 framework and I would just like to ask how do you completely wipe the storage data upon uninstallation of the app. Thanks!

demetris-manikas commented 6 years ago

To avoid automated backup/restore

IOS: set the KeychainAccessibility to a *ThisDeviceOnly setting.

Android: change the manifest file to read as follows <manifest ... > ... <application android:allowBackup="false" ... > ... See https://developer.android.com/guide/topics/data/autobackup#EnablingAutoBackup

@ggozad Should this be added to the README?

craidencool13 commented 6 years ago

Thank you for responding @demetris-manikas !