How to create an intent for email only with a file attachment
Here's what I want to achieve - I should only be able to see email client apps like gmail and outlook in the options segment. Don't want the rest of the apps.
intent.addCategory(Intent.CATEGORY_APP_EMAIL)
the code above was one of the suggestions that I saw while searching for how to achieve this. But, here's the issue when I use it...
https://i.stack.imgur.com/gBAXN.jpg▾
Also,
val emailIntent = Intent(Intent.ACTION_SENDTO)
was another suggestion. Has...