Home | History | Annotate | Download | only in customtabs

Lines Matching defs:packageName

62      * @param packageName Package name to set on the {@link Intent} for binding.
70 String packageName, CustomTabsServiceConnection connection) {
72 if (!TextUtils.isEmpty(packageName)) intent.setPackage(packageName);
109 String packageName = defaultViewHandlerInfo.activityInfo.packageName;
111 packageNames.add(packageName);
117 for (String packageName : packageNames) {
118 serviceIntent.setPackage(packageName);
119 if (pm.resolveService(serviceIntent, 0) != null) return packageName;
135 * @param packageName Package name of the target implementation.
138 public static boolean connectAndInitialize(Context context, String packageName) {
139 if (packageName == null) return false;
156 return bindCustomTabsService(applicationContext, packageName, connection);