YosiFZ
YosiFZ

Reputation: 7900

Android Share Link with WhatsApp

I am trying to share link with my android app with this:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, share);
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "");
mContext.startActivity(intent);

this is the share Strong :

Check out my link:\n http://my123domain.com/v.php?vid=123456-123456-123456

But when i share it with Whats App the link is not click able, Any idea Why?

Upvotes: 2

Views: 3170

Answers (1)

b4da
b4da

Reputation: 3108

Whatsapp does not allow sending clickable text links to people who do not have you in their contact list. Make sure receiving party have you in their contact list.

Upvotes: 6

Related Questions