Messenger and facebook app cannot process my image when i try to share.
Here is my method:
private void shareIt()
{
Intent intent=new Intent(android.content.Intent.ACTION_SEND);
intent.setType("image/*");
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
if(mImageUri == null) {
Toast.makeText(this, "Choose a photo first", Toast.LENGTH_LONG).show();
}
else
{
intent.putExtra(Intent.EXTRA_STREAM , mImageUri);
startActivity(Intent.createChooser(intent, "Share Image via..."));
}
}
Could not solve this issue based on others solutions. Any idea how to get it working?
mImageUri contains the image when is selected from gallery.