Reputation: 1106
I am developing an android app.
I want to open (just open) WhatsApp from my app.
How can I open WhatsApp from my app?
Upvotes: 3
Views: 16590
Reputation: 7131
Did you try this
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.whatsapp");
startActivity(launchIntent);
Upvotes: 10