I develop Android apps now with PhoneGap. Lately when I try to switch between HTML pages, the application closed, and in the LogCat the following error appears:
The following worked for me to get rid of the error in the webview:
webView.freeMemory();
or
webView.clearCache(true);
The second option will slow down your app.