What is the best way to persist a users info in an android app? I have a login screen that uses a web service to authenticate the user and return basic user info.
I don't care about saving the username/password, but I do need things like a couple of integer ID fields (patientID and personID) and a first and last name.
I don't want the user to have to login every time they load the app. Someone suggested I use SQL lite to store the info, is this the best way or is there a more light weight solution?