I do not know if it is useful but
I noticed that in code like
webView.addJSCallback("javascript code here;callback.onSuccess();",
new SuccessCallback<BrowserComponent.JSRef>() {
@Override
public void onSucess(BrowserComponent.JSRef value) {
System.out.println("success");
}
});
the method name onSuccess of
SuccessCallback<BrowserComponent.JSRef>
is written as onSucess (just one 'c')
while the callback method is called successfully from javascript using callback.onSuccess().
It is harmless for my project, in fact.
Did you know it?
Regards