I can't figure out how to disable auto complete on an Android Samsung device in my Cordova project. When a user tries to type in his email address, it changes completely what the user typed in. Even a dot is replaced by two dots, this is not acceptable for the user.
I already tried to add attributes into the html form, but this didn't work.
<input type="email" name="email" autocomplete="off">
I also tried to override the webview in the android project (Java code), but this didn't work either.
webview.getSettings().setSaveFormData(false);
WebView.getSettings().setSavePassword(false);
WebView.clearFormData();