मुझे पता चला कि "इश्यू एक्सप्लोरेशन" को कैसे एक्सेस किया जाए। पूर्ण निरीक्षण स्पष्टीकरण इनलाइन (और 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.