-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
Summary:
There should be an option to share the app.
Steps to reproduce:
- Add option to share in navigation drawer.
- On Click of share option -
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "sharetext");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getString(R.string.share)));
Expected behavior:
There should be an option to share the app.
Observed behavior:
There is no option to share the app.
Commons app version:
2.6.7