Hello I need to search in the phone and list all the applications that when trying to launch an Intent(Intent.ACTION_CALL) these support it. I don't know if it's possible, I checked the implementation of the Intent.createChooser() method, but I wasn't lucky.
What I really want to do, is a view where the user can configure the application he wants to use when he wants to perform the action of calling someone. That's why I need to search all the applications that the user has in the phone that support the Intent.ACTION_CALL to show them in a list. After the user selects the application he wants, I manage for when the user is going to make calls, launch the application he selected.
Thanks