Android浏览器链接未被重定向到相应的应用程序

时间:2016-02-17 18:04:59

标签: android deep-linking google-crawlers android-app-indexing google-app-indexing

我已在Android上实施Google App索引,我的应用程序会处理一些深层链接。所以我希望浏览器中的相应链接应该重定向到我的应用程序。但这并没有发生。任何线索?

1 个答案:

答案 0 :(得分:0)

您应该正确配置要使用您的应用打开的链接。 通常,您应该将以下内容添加到AndroidManifest

中的活动/服务声明中
            <intent-filter>
            <action android:name="android.intent.action.VIEW"/>

            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT"/>

            <data
                android:host="yourdomain"
                android:path="/yourpath/"
                android:scheme="yourscheme"/>
        </intent-filter>

现在以&#34; yourscheme&#34;开头的网址将在整个意图中直接发送到您的活动。

您可以找到有关深层链接here的更多信息。