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); in
Solution 1:
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.
Post a Comment for "Android Share Link With Whatsapp"