1 page.title=Making Your App Content Searchable by Google 2 page.tags="app indexing", "search" 3 meta.tags="getusers", "search","appindexing" 4 page.image=images/cards/google-search_2x.png 5 trainingnavtop=true 6 startpage=true 7 8 @jd:body 9 10 <div id="tb-wrapper"> 11 <div id="tb"> 12 13 <h2>Dependencies and prerequisites</h2> 14 <ul> 15 <li>Android 2.3 (API level 9) and higher</li> 16 </ul> 17 18 <h2>You Should Also Read</h2> 19 <ul> 20 <li><a href="http://insidesearch.blogspot.com/2013/12/the-power-of-search-now-across-apps.html" class="external-link" target="_blank">The power of Search, now across apps (blog post)</a></li> 21 <li><a href="https://developers.google.com/app-indexing/" class="external-link" 22 target="_blank">App Indexing for Google Search</a></li> 23 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent 24 Filters</a></li> 25 <li><a href="{@docRoot}tools/help/app-link-indexing.html">Supporting URLs and App Indexing in Android Studio</a></li> 26 </ul> 27 </div> 28 </div> 29 <a class="notice-developers-video wide" href="http://www.youtube.com/watch?v=aISUYHTkTOU"> 30 <div> 31 <h3>Video</h3> 32 <p>DevBytes: App Indexing</p> 33 </div> 34 </a> 35 36 <p>As mobile apps become more pervasive, users are looking for relevant 37 information not only from web sites but also from apps they have installed. 38 You can enable Google to crawl through your app content and present your 39 Android app as a destination to users through Google Search results, when 40 that content corresponds to a web page that you own.</p> 41 42 <p>You can make it possible for Google Search to open specific content in your 43 app by providing intent filters for your activities. Google Search 44 app indexing complements this capability by presenting links to relevant app 45 content alongside links to your web pages in users' search results. Users on 46 mobile devices can then click on a link to open your app from their search 47 results, allowing them to directly view your app's content instead of a 48 web page.</p> 49 50 <p>To enable Google Search app indexing, you need to provide Google with 51 information about the relationship between your app and web site. This process 52 involves the following steps:</p> 53 <ol> 54 <li>Enable deep linking to specific content 55 in your app by adding intent filters in your app manifest.</li> 56 <li>Annotate these links in the associated web pages on your web site or in a 57 Sitemap file.</li> 58 <li>Opt in to allow Googlebot to crawl through your APK in the Google Play store 59 to index your app content. You are automatically opted-in when you join as 60 a participant in the early adopter program. 61 </li> 62 </ol> 63 64 <p itemprop="description">This class shows how to enable deep linking and indexing of 65 your application content so that users can open this content directly from mobile search 66 results.</p> 67 68 <h2>Lessons</h2> 69 70 <!-- Create a list of the lessons in this class along with a short description of each lesson. 71 These should be short and to the point. It should be clear from reading the summary whether someone 72 will want to jump to a lesson or not.--> 73 74 <dl> 75 <dt><b><a href="deep-linking.html">Enabling Deep Links for App 76 Content</a></b></dt> 77 <dd>Shows how to add intent filters to enable deep linking to app 78 content.</dd> 79 <dt><b><a href="enabling-app-indexing.html">Specifying App Content for 80 Indexing</a></b></dt> 81 <dd>Shows how to annotate web site metadata to allow Google's algorithms to index 82 app content.</dd> 83 </dl> 84