当我打开此链接时,我重定向到未知页面(代码: 404 )。
我在我的AndroidManifest中使用了这个过滤器:
<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="play.google.com"
android:scheme="https"
android:pathPattern=".*" />
</intent-filter>这里出了什么问题?
发布于 2017-09-08 02:46:26
过滤器没有任何问题,只是你不应该使用它,因为你声称你的应用程序应该处理所有的https://play.google.com链接。而PlayStore应用程序已经在这么做了。
你首先应该有一个有效的链接来让深度链接工作。
你能在这里解释一下你想用深度链接实现什么吗?
https://stackoverflow.com/questions/46103053
复制相似问题