Google Chrome does not open application on Deep Link on Android Google Chrome does not open application on Deep Link on Android google-chrome google-chrome

Google Chrome does not open application on Deep Link on Android


Chrome has changed how it handles intents launched from the Chrome browser app.

<a href="intent://scan/#Intent;scheme=zxing;package=com.google.zxing.client.android;end"> Take a QR code </a>

The answer can be found here: https://developer.chrome.com/multidevice/android/intents


In the manifest file your intent filter should be like this:

        <intent-filter>            <action android:name="android.intent.action.VIEW" />            <category android:name="android.intent.category.DEFAULT" />            <category android:name="android.intent.category.BROWSABLE" />            <data                android:host="productlist"                android:path="/"                android:scheme="westwing" />        </intent-filter>

and on the browser side it should be like this:

"intent://productlist/#Intent;scheme=westwing;package=de.westwing.android;end"