Answers:
我发现了如何访问“问题说明”。我需要将鼠标悬停在检查错误上才能在线显示完整的问题说明(并按Ctrl-F1)
因此我缺少的关键字是“深层链接”!
以下是进行深层链接的android开发人员页面“使Google能够抓取您的应用内容,并允许用户从搜索结果中输入您的应用”
http://developer.android.com/training/app-indexing/deep-linking.html
以下是有关如何进行深层链接的代码片段。我不知道Google如何通过添加就可以抓取我的应用...
<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>
还有一个说明说
Note: Intent filters may only contain a single data element for a URI pattern.
Create separate intent filters to capture additional URI patterns.
如果要禁用此警告,直到应用程序开发完成或没有要添加的Web URL,请在AndroidManifest.xml
文件中添加此行。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.yourappname">
<application
...
...
tools:ignore="GoogleAppIndexingWarning">
....
</application>
</manifest>