I have this simple HTML that I load into an Android WebView (SDK version 1.5)-
<html>
<body onload="nomethod()">
<h1>Hello World</h1>
</body>
</html>
Function nomethod() doesn't exist but the LogCat doesn't display any error.
It seems that any exception that isn't caught cannot be traced.
Any idea how can I handle or trace uncaught exceptions?
Thanks!