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 com.demo.app2 application, Is this feasible ?
Thanks
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