Cordova WebView TIMEOUT ERROR with android
You're not doing anything wrong, the TIMEOUT ERROR probably occurs because your Android phone (or your emulator) runs too slow.
You can try to increase the load timeout with the following instruction :
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
in your OnCreate method. Or set it in the config.xml file :
<preference name="loadUrlTimeoutValue" value="60000" />