动态链接的意图过滤器未按预期工作

问题描述 投票:0回答:1

我已经设置了以下意图过滤器,用于检测要在我们的应用中打开的链接。

            <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="share.example.tv"
                    android:pathPrefix="/"
                    android:scheme="https" />
                <data
                    android:host="example.tv"
                    android:pathPrefix="/u"
                    android:scheme="https" />
            </intent-filter>

我希望我的应用在2个链接下方打开

  1. https://share.example.tv/tv34gh
  2. https://example.tv/u/some-user-name

但是我的应用程序也正在显示这些链接

https://example.tv/anything/literally-anything

android deep-linking intentfilter
1个回答
0
投票

如果我将两个链接都放在不同的意图过滤器中以进行相同的活动,如下所示

© www.soinside.com 2019 - 2024. All rights reserved.