Replies: 1 comment
-
The preferences plugin uses localStorage on web, on Android uses SharedPreferences, and on iOS it uses UserDefaults. While those should be persistent, they are not secure for storing private keys, for sensitive information, plugins such as identity vault are recommended, but it's a paid plugin you can search for free alternatives that use keychain on iOS and whatever secure storage android provides. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey guys, I'm working on a project where I need to save a private key and some personal info on the users phone. I'm beta testing in the web using just plain HTML and JS and I have linked the capacitor API's. In the web at least it does not seem to save the data for more than about one day and when I get into the data tab of the console it seems like it is just saving it in the local storage whitch is what I don't want to happen. I need it to be permanent and I need to be able to trust that it will always be there
Beta Was this translation helpful? Give feedback.
All reactions