I’m creating an android application that connects to my web-based application using WebView. After the user log’s in to my android application I use webview.postURL to send post data to my website so the user does not need to login again on my website. Now, I would like to implement an option “remember me” to save the user’s credentials in my android application. I’m currently using SharedPreferences to store user credential and I have read that storing users’ credential in SharedPreferences is risky as it is saved as clear text. The credential for this application is not shared to any other android application. It is only shared with my website.
Any suggestion would be appreciated.