I have developed an android application on which i'm using deep-link to open the application and it is working perfectly on all the other device except in Samsung mobiles and that too when i try to open it via Samsung default Messenger, instead of launching the application it is redirecting me to Google play store. Please give me solution to find out what i have missed out.
<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:exported="true"
android:host="frr.com"
android:scheme="https" />
<data
android:exported="true"
android:host="frr.com"
android:scheme="http" />
<data
android:exported="true"
android:host="www.frr.com"
android:scheme="https" />
<data
android:exported="true"
android:host="www.frr.com"
android:scheme="http" />
</intent-filter>
And this is the link- https://frr.com/open.php