I have specific config deeplink in AndroidManifest 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:scheme="unilink"
android:host="myhost.com"
android:pathPrefix="/optional_path_prefix" />
</intent-filter>
When i open url "unilink://myhost" in my web browser , my app not recognize url to open.
I have specific config deeplink in AndroidManifest like this
When i open url "unilink://myhost" in my web browser , my app not recognize url to open.