Here is my function
fun getActionIntent(uri : String?) {
val phoneIntent = Intent(Intent.ACTION_VIEW)
phoneIntent.data = Uri.parse("tel:$uri")
phoneIntent.setPackage("com.whatsapp")
ctxt.startActivity(Intent.createChooser(phoneIntent, "Send Sms"))
}
I just get Phoneand Skype app in my chooser. I want whatsapp to be add to the list.