I built an app in Android using webview and Phonegap. I used the code below to add a Javascript interface so that I can call methods on Helper.java from Javascript. While this works when I deploy the app using Android, it doesn't work when I am using PhoneGap.
I am uploading the .zip file of the Android project to PhoneGap and then generating .apk file through the Phonegap build. However as I said this app does not connect to the Helper class for some reason. What am I doing wrong?? Thanks.
public class FinderApp extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.init();
super.appView.getSettings().setJavaScriptEnabled(true);
appView.addJavascriptInterface(new Helper(), "helper");
super.loadUrl("file:///android_asset/www/index.html");
}