I have an Android application that runs another app and I use this code:
public void launchGoogleChrome(View view) {
Intent launchGoogleChrome = getPackageManager().getLaunchIntentForPackage("com.android.chrome");
startActivity(launchGoogleChrome);
}
but if the application does not have any icon, how to start it?