I am working with Android / ios Applications. I would like to know if it is possible to run an application B using an Application A, with a button
I am working with Android / ios Applications. I would like to know if it is possible to run an application B using an Application A, with a button
If possible. You must know the name of the other package and launch an intent to be able to launch it, for example, with the following code, you can launch the messenger of Facebook:
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.facebook.orca");
//si el paquete no está instalado, launchIntent será null
if (launchIntent != null) {
startActivity(launchIntent);
}