<pre><code class="lang-auto">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
}
</code></pre>