Here is my situation:
I have converted an Android application to a Blackberry z10 application. Everthing works well except one,
in my application the Java code communicates with Javascript and vice versa. In Android it's pretty easy.
myWebView.addJavascriptInterface( new JSCommunicator() , "JSCommunicator" );
and from Javascript call functions like
JSCommunicator.foo()
however it is not working on z10. Is there any way to fix this?
Thank you for your help, and sorry for the bad language.