I'm trying to fetch details of all browsers in the device using PackageManager.
Here is something I have tried.
PackageManager pm = context.getPackageManager();
// Get default VIEW intent handler.
Intent activityIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse(url));
// Get all apps that can handle VIEW intents.
List resolvedActivityList =
pm.queryIntentActivities(activityIntent, 0);
But, it is returning only one app details i.e., my default browser info.