Android App-Index开放Play商店

时间:2015-03-04 11:42:50

标签: android deep-linking android-app-indexing google-search-platform

所以我一直在玩深度链接,我已经将它排序(Urban Airship)。我正在从谷歌搜索结果中查看应用程序索引,而且我正在努力实现这一目标。目前,我已经有了一个基本的Web服务器,页面上有应该打开app / deep链接的链接。但是,它只是打开应用程序的Play商店页面...

这是页面上的链接:

<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商店而不是我的应用?

由于

1 个答案:

答案 0 :(得分:0)

解决。

原来我的Intent Filter没有进行正确的活动。