Manoj ahirwar
Manoj ahirwar

Reputation: 1106

How to open Whatsapp from other app

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

Answers (1)

Amsheer
Amsheer

Reputation: 7131

Did you try this

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.whatsapp");
        startActivity(launchIntent);

Upvotes: 10

Related Questions