You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
In v0.1.4, we use val prefs = SecurePreferences(context, "userpassword", "my_user_prefs.xml") to store the user's password which is "userpassword". How do we retrieve this value for authentication purposes?
The text was updated successfully, but these errors were encountered:
harini9804
changed the title
Retrieving password
Retrieving userpassword from Secure Preferences file
Jun 7, 2018
harini9804
changed the title
Retrieving userpassword from Secure Preferences file
Retrieving userpassword from Secure Preferences
Jun 7, 2018
It is not used to store the user_password int he sharedPreferences. You are passing the user_password as the Key to the SecuredPreferences method and using the user_password as the key it will encrypt the shared preferences file.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In v0.1.4, we use
val prefs = SecurePreferences(context, "userpassword", "my_user_prefs.xml")
to store the user's password which is"userpassword"
. How do we retrieve this value for authentication purposes?The text was updated successfully, but these errors were encountered: