Saturday, September 30, 2017

how to share your app in share button- android studio

Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "https://play.google.com/store/apps/details?id=com.edupointbd.amirul.justAdmissionAid");
startActivity(Intent.createChooser(intent, "Share"));
return true;