I am trying to use the following code: packageManager.queryIntentActivities(intent, PackageManager.MATCH_ALL)
The docs for MATCH_ALL state: "This flag should be used with extreme care."
I am just trying to see if an intent is resolvable. MATCH_ALL seems like the most obvious solution to do this, but why do the docs warn about using this flag? What are the dangers of using this flag and what should be the better alternative?