Tôi đã tìm ra cách truy cập vào "Giải thích vấn đề". Tôi cần di chuột qua một lỗi kiểm tra để hiển thị nội tuyến giải thích vấn đề đầy đủ (và nhấn Ctrl-F1)
vì vậy từ khóa tôi đang thiếu là "liên kết sâu"!
Sau đây là trang dành cho nhà phát triển Android để thực hiện các liên kết sâu "Để cho phép Google thu thập nội dung ứng dụng của bạn và cho phép người dùng nhập ứng dụng của bạn từ kết quả tìm kiếm"
http://developer.android.com/training/app-indexing/deep-linking.html
Sau đây là đoạn mã về cách thực hiện một liên kết sâu. Tôi không biết làm thế nào Google có thể thu thập dữ liệu ứng dụng của mình chỉ bằng cách thêm nó vào ...
<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>
đó cũng là một ghi chú cho biết
Note: Intent filters may only contain a single data element for a URI pattern.
Create separate intent filters to capture additional URI patterns.