I am developing a PhoneGap App, All what I need is to open an external application.
e.g. my app namespace is com.demo.app1 and I need to open the <
You can crea a plugin with this java code:
Intent LaunchIntent = this.cordova.getActivity().getPackageManager().getLaunchIntentForPackage("com.demo.app2");
this.cordova.getActivity().startActivity(LaunchIntent);
or try any of this 2 plugins for launching apps
https://github.com/lampaa/org.apache.cordova.startapp
https://github.com/dmedvinsky/cordova-startapp