Question: What is a secure method of storing and checking if a user is 'Logged in' to an application.
I am building a personal finance application so security is important.
Is storing a key->value pair in SharedPreferences such as loggedin->true secure enough? (My intuition tells me no).
Could someone please point me in the right direction?
Much appreciated!