Thursday, March 19, 2015

Share your app's google play store link from app

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(
Intent.EXTRA_TEXT,
"Hey, check out  this amazing app..\nhttps://play.google.com/store/apps/details?id="
+ context.getPackageName());
context.startActivity(Intent.createChooser(intent,
"Share to Friends"));

No comments:

Post a Comment