I want to list out the activity intent filters for the packages installed on my phone. This is just for a learning experience, I want to understand what apps can be started with implicit intents and how the intent filters are set up.
Google provides a table for the applications they provide at http://developer.android.com/guide/appendix/g-app-intents.html. I’m looking to create a similar list for other applications.
Can I use the PackageManager and dig this info up in code? Does anyone know of an existing app that can do this? Can anyone point me to an existing example to do what I want?
Sorry if this is a duplicate of similar questions like Listing an application's activity and intent-filters? and Android -- How to I get a list of all available intent filters ?