我开发了一个 android 应用程序,我正在使用深层链接打开该应用程序,它在除三星手机之外的所有其他设备上都能完美运行,当我尝试通过三星默认 Messenger 打开它时,它也是如此,而不是启动它正在将我重定向到 Google Play 商店的应用程序。请给我解决方案以找出我错过了什么。
<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>
这是链接 - https://frr.com/open.php