3

I am developing an android app.
I want to open (just open) WhatsApp from my app.

How can I open WhatsApp from my app?

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Manoj ahirwar
  • 1,062
  • 1
  • 10
  • 24

1 Answers1

10

Did you try this

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.whatsapp");
        startActivity(launchIntent);
Amsheer
  • 7,046
  • 8
  • 47
  • 81