所以我一直在玩深度链接,我已经整理好了(城市飞艇)。我正在研究谷歌搜索结果中的应用程序索引,我很难让它继续下去。目前,我已经有了一个基本的web服务器,其中包含应该打开应用程序/深度链接的链接。然而,它所做的只是打开应用程序的Play Store页面。。。
这是页面上的链接:
<a href="intent://app.com/product/1#Intent;scheme=http;package=com.package;end">Deep Link</a>
显然是我的包裹等
这是我的意图过滤器:
<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="app.com" />
</intent-filter>
为什么它打开Play Store而不是我的应用程序?
感谢
已解决。
事实证明,我的意向过滤器不在正确的活动中。