I am developing one application in html,css,javascript in phonegap. in that application i need a flash plugin coding for javascript to enable audio/video for my application
I have tried this and it is working perfectly fine in my android app. I have embed flash site inside cordova app.
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
super.init();
super.appView.getSettings().setPluginState(PluginState.ON);
super.loadUrl("http://bezalelgreenarts.com/");//flash based site
}