We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f7856f + c1b9ee1 commit 4c50ed0Copy full SHA for 4c50ed0
src/android/helpers/CustomTabsHelper.java
@@ -73,7 +73,7 @@ public static String getPackageNameToUse(Context context) {
73
}
74
75
// Get all apps that can handle VIEW intents.
76
- List<ResolveInfo> resolvedActivityList = pm.queryIntentActivities(activityIntent, 0);
+ List<ResolveInfo> resolvedActivityList = pm.queryIntentActivities(activityIntent, PackageManager.MATCH_ALL);
77
List<String> packagesSupportingCustomTabs = new ArrayList<>();
78
for (ResolveInfo info : resolvedActivityList) {
79
Intent serviceIntent = new Intent();
0 commit comments