I'm using a WebView in an app and I have disabled the cache with these two lines:
mWebView.getSettings().setAppCacheEnabled(false);
mWebView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
When the app loads the WebView it shows a login page and the strange behavior here is that the page is remembering the user after his first log in (despite the two lines being added). Another relevant point is that if I delete the app data the user is not remembered any more.
So, where is this user being saved? How can I prevent this info from being saved? As I understand it's not being saved in the cache, as I have disabled it.
EDIT: Just to clarify I don't want to remove the data, what I need is that the app does not generate it.