Following is my code for opening web url in app using chrome custom tabs
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.setToolbarColor(ContextCompat.getColor(context, R.color.appthemecolor));
CustomTabsIntent customTabsIntent = builder.enableUrlBarHiding().build();
customTabsIntent.launchUrl(context, Uri.parse(url));
This code is working on Marshmellow and above devices and deep links are also working asking to open other apps but chrome custom tabs deep links not working on jelly bean devices.
Any reason why?