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.
1 parent 8f7856f commit c1b9ee1Copy full SHA for c1b9ee1
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