I implement an app.
It can upload photos to my own server.
I want to let my app can list in send list when implement below code:
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/jpeg");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse(FilePath));
startActivity(Intent.createChooser(share, "Share Image"));
How can I do it?
You need to add following in your manifest.
Your manifest should look something like follow.