Lien profond pour ouvrir l'application Outlook Groups depuis une autre application

Lien profond pour ouvrir l’application Outlook Groups depuis une autre application

you can use explicit intent for opening  different app from your app by using this code

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("package name of application");
if (launchIntent != null) {
    startActivity(launchIntent);//null pointer check in case package name was not found
}