Pandiarajan N
Pandiarajan N

Reputation: 11

Android - Branch.io Deep linking not working in chrome

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" />

Upvotes: 1

Views: 1858

Answers (1)

dwestgate
dwestgate

Reputation: 1054

To close the loop on this for anyone coming upon this ticket, the issue reported was due to the package name in the Android Manifest.xml file being set to an incorrect value. The package name in the manifest should match the package name configured for the Java project.

Upvotes: 0

Related Questions