「課題解説」へのアクセス方法を知りました。問題の完全な説明をインラインで表示するには(そして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.