You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/06/18 13:27:28 UTC

[GitHub] [cordova-ios] bengrah-miller opened a new issue #908: BackupWebStorage on iOS - set to none, but data still persists after deleting app from device

bengrah-miller opened a new issue #908:
URL: https://github.com/apache/cordova-ios/issues/908


   We're developing an app using Ionic/Cordova that saves items to using the SecureStorage plugin. Items are saving fine, but when we uninstall the app reinstall, the items we've saved before are still there. We would like to stop this behaviour.
   
   We found out about the BackupWebStorage property (link) and have set this to none, however the data still persists despite this being set.
   
   Is there anything else we can check, turn off, set in Xcode that we have to do at this point to get this to work?
   
   Thank you, bengrah


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jcesarmobile closed issue #908: BackupWebStorage on iOS - set to none, but data still persists after deleting app from device

Posted by GitBox <gi...@apache.org>.
jcesarmobile closed issue #908:
URL: https://github.com/apache/cordova-ios/issues/908


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] timbru31 commented on issue #908: BackupWebStorage on iOS - set to none, but data still persists after deleting app from device

Posted by GitBox <gi...@apache.org>.
timbru31 commented on issue #908:
URL: https://github.com/apache/cordova-ios/issues/908#issuecomment-646024945


   IIRC that’s stock iOS behavior: keep old app data for some time, if the user decides to reinstall the app, his data is still there. I have no official documentation links right now though.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] bengrah-miller commented on issue #908: BackupWebStorage on iOS - set to none, but data still persists after deleting app from device

Posted by GitBox <gi...@apache.org>.
bengrah-miller commented on issue #908:
URL: https://github.com/apache/cordova-ios/issues/908#issuecomment-646026871


   @timbru31 Is that not what the `BackupWebStorage` property is meant to prevent?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-ios] jcesarmobile commented on issue #908: BackupWebStorage on iOS - set to none, but data still persists after deleting app from device

Posted by GitBox <gi...@apache.org>.
jcesarmobile commented on issue #908:
URL: https://github.com/apache/cordova-ios/issues/908#issuecomment-646040862


   web storage is local storage, session storage, web sql and some possible webview storages.
   
   Secure storage plugin saves to the keychain, which can persist after app uninstalls, report the issue in the secure storage plugin repo, there are a few workarounds they could add to the plugin to delete/reset existing data on first launch after reinstall. But it's not possible to delete on uninstall because there is no uninstall event or notification the app can hook to.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org