BarisBr
BarisBr

Reputation: 128

Deeplinking Android

My deep linking works perfectly if I tap the link from any other application.

But if I copy paste the link to Chrome then try to open it application does not start. Only the html content is shown.

Upvotes: 0

Views: 158

Answers (1)

gizembrh
gizembrh

Reputation: 140

Did you add <category android:name="android.intent.category.BROWSABLE" /> to your intent filter?

From Android developers source:

<category> Include the BROWSABLE category. The BROWSABLE category is required in order for the intent filter to be accessible from a web browser. Without it, clicking a link in a browser cannot resolve to your app.

Upvotes: 1

Related Questions