"문제 설명"에 액세스하는 방법을 찾았습니다. 전체 문제 설명을 인라인으로 표시하고 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.