The auto-login to the WebView does not work.
- Cookies included.
- In a normal browser, everything works.
The auto-login to the WebView does not work.
As I recall, it was done with the help of webview.getSettings().setSavePassword(true); .
But starting from API 18, this method is deprecated and will no longer work. The only crutch that I see possible is to save the username / password locally and then fill in the page onLoad myself. But it is very very not security.
Source: https://ru.stackoverflow.com/questions/937062/
All Articles