I have integrated the branch.io SDK with my android app. I created the deep link URL with custom URI scheme(drbond://) in the dashboard. When clicking the deep link from a mobile browser it takes me to the app(If installed). But in chrome, it doesn't. I tried with Opera, Mozilla, and other default browsers are working fine. Please help me to deep linking working in chrome.
FYI, My activity intent filter,
<intent-filter>
<data android:scheme="drbond" android:host="open" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />