Why android 10 ,11 and 12 sharing specific intent in apps showing only 3 apps?
I have to share content/video/image only the specified apps, I searched and tried lot but I'm not able achieve. how can able to achieve that Could you please any one help me ?
My code is below. What am I missing?
fun shareIntentSpecificApps() {
val intentShareList: MutableList = ArrayList()
val shareIntent = Intent()
shareIntent.action = Intent.ACTION_SEND
shareIntent.type = "text/plain"
val resolveInfoList =...