Reputation: 105
Android deep linking is not working with https..But it works with http .
<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="http" />
<data android:scheme="https" />
<data android:host="www.test.uz" />
</intent-filter>
Upvotes: 2
Views: 947
Reputation: 68
In your code you are adding tag separately for scheme and host properties. You need to add tag once and add both scheme and host properties. in the same tag.
This is a valid way.
scheme and host properties.
<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="http"
android:host="www.test.uz" />
</intent-filter>
Upvotes: 2
Reputation: 105
I found a solution from github.com.
<data android:scheme="https"
android:host="test.uz"/>
just removed www.
Upvotes: 1