I have share intent in my app to share app link with users via whatsapp,email etc.After sending link when user click on link it says even though I am passing correct play store url.
Below is my code:
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_SUBJECT,"Bookbudi app");
shareIntent.putExtra(Intent.EXTRA_TEXT, "Hello there, I found this awesome app take a look."+" https://play.google.com/store/apps/details?id=com.app.myapp");
startActivity(Intent.createChooser(shareIntent,"Share via"));
Someone please let me know what I am doing wrong. Any help would be appreciated.
THANKS