Home | History | Annotate | Download | only in app-indexing

Lines Matching full:your

12   <li><a href="#adding-filters">Add Intent Filters for Your Deep Links</a></li>
14 <li><a href="#testing-filters">Test Your Deep Links</a></li>
20 <li><a href="{@docRoot}training/basics/intents/filters.html">Allow Other Apps to Start Your Activity</a></li>
26 <p>To enable Google to crawl your app content and allow users to enter your app
28 activities in your app manifest. These intent filters allow
29 <em>deep linking</em> to the content in any of your activities. For example, the user might click on a deep link to view a page within a shopping app that describes a product offering that the user is searching for.</p>
31 <h2 id="adding-filters">Add Intent Filters for Your Deep Links</h2>
32 <p>To create a deep link to your app content, add an intent filter that
33 contains these elements and attribute values in your manifest:</p>
45 browser. Without it, clicking a link in a browser cannot resolve to your app.
48 only with an explicit intent, using your app component name.
53 in your manifest for deep linking. The URIs {@code ?example://gizmos?} and
77 <p>Once you've added intent filters with URIs for activity content to your app
79 that has matching URIs to your app at runtime.</p>
86 <p>To learn more about defining intent filters, see <a href="{@docRoot}training/basics/intents/filters.html">Allow Other Apps to Start Your Activity</a>.</p>
89 <p>Once the system starts your activity through an intent filter, you can
119 so that your app matches users' expectations for backward navigation after
120 they enter your app through a deep link.
124 <h2 id="testing-filters">Test Your Deep Links</h2>