I know that I can launch another app by knowing its package name by doing something like this:
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.example.yourapp");
startActivity(launchIntent);
However, I would like to open up a chooser
with a list of apps that are known by their package names. These apps don't fall under the typical intent categories, like ACTION_SEND
.
Is this possible?