根据官方文件:
为了使Google能够抓取您的应用内容并允许用户从搜索结果中进入您的应用,您必须在应用清单中添加针对相关活动的意图过滤器。这些意图过滤器允许您在任何活动中深度链接到内容。例如,用户可能单击深层链接以查看购物应用程序中的页面,该页面描述了用户正在搜索的产品。
使用此链接为应用程序内容启用深层链接,您将了解如何使用它。
并使用此测试来测试您的App索引实现。
以下XML代码段显示了如何在清单中指定用于深度链接的意图过滤器。
<activity
android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos" >
<intent-filter android:label="@string/filter_title_viewgizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- note that the leading "/" is required for pathPrefix-->
<!-- Accepts URIs that begin with "example://gizmos” -->
<data android:scheme="example"
android:host="gizmos" />
</intent-filter>
</activity>
通过Android调试桥进行测试
$ adb shell am start
-W -a android.intent.action.VIEW
-d <URI> <PACKAGE>
$ adb shell am start
-W -a android.intent.action.VIEW
-d "example://gizmos" com.example.android