user3698799
user3698799

Reputation: 81

Share Text in whatsapp and choosing multiple contact

Good Day,

I want to implement a sharing in my app, where a simple text will be share in whatsapp by choosing multiple contact and will return to me the number of contact I chose to share with. I tried the code below, but only allows me one contact or a group.

Intent intent = new Intent();
            intent.setAction(Intent.ACTION_SEND_MULTIPLE);
            intent.putExtra(Intent.EXTRA_TEXT, "Sample");
            intent.setType("text/plain");
            startActivity(intent);

Thanks in advance

Upvotes: 0

Views: 577

Answers (1)

Antrromet
Antrromet

Reputation: 15414

At the moment, WhatsApp does not support for multiple contacts share. In their FAQ page, its clearly mentioned the steps to share with a single person, but not multiple.

Upvotes: 0

Related Questions