Deep Linking for opening Outlook Groups app from another app
Deep Linking for opening Outlook Groups app from another app
Deep Linking for opening Outlook Groups app from another app
Re: Deep Linking for opening Outlook Groups app from another app
```
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
}
```
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
}
```