I want to launch a specif application.
I know how to do Intents but I want to avoid the selection menu if there are multiple apps that can handle the intent, I want
What i do to open apps is this
private void _LaunchApp(final String _Pack) { Intent launchi = new Intent(Intent.ACTION_VIEW); launchi.setData(Uri.parse("android-app://".concat(_Pack))); startActivity(launchi); }
and the usage
_LaunchApp("your.package.here");