<Share Image to third party apps in android> I'm t...
# stackoverflow
u
Share Image to third party apps in android I'm trying to share image with third party apps in android. I'm able to share image with all device except Xiaomi. val shareIntent = Intent() shareIntent.action = Intent.ACTION_SEND shareIntent.putExtra(Intent.EXTRA_TEXT, shareText) shareIntent.putExtra(Intent.EXTRA_STREAM,imageUri) shareIntent.type = "image/*" shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION) context.startActivity(Intent.createChooser(shareIntent, "Share using"))