I am trying to call some javascript functions sitting in an html page running inside an android webview. Pretty simple what the code
javascript
html
android webview
I figured out what the issue was : missing quotes in the testEcho() parameter. This is how I got the call to work:
myWebView.loadUrl("javascript:testEcho('Hello World!')");