1 page.title=Google Play Services 2 header.hide=1 3 page.metaDescription=With Google Play services, your app can take advantage of the latest Google-powered features such as Maps, Analytics, and more: platform updates are distributed automatically as an APK through the Google Play Store. 4 5 @jd:body 6 7 <div class="landing-banner"> 8 9 <div class="col-6"> 10 <img src="/images/google/gps.png" alt=""> 11 </div> 12 <div class="col-6"> 13 14 <h1 itemprop="name" style="margin-bottom:0;">Google Play Services</h1> 15 <p itemprop="description">Give your apps more features to attract users 16 on a wider range of devices. 17 With Google Play services, your app can take advantage 18 of the latest, Google-powered features such as Maps, Google+, and more, 19 with automatic platform updates distributed as an APK through 20 the Google Play store. This makes it faster for your users to receive updates 21 and easier for you to integrate the newest that Google has to offer. 22 </p> 23 24 </div> 25 </div> 26 27 <div class="layout-content-row"> 28 <div class="layout-content-col span-4"> 29 30 <h4>Google Technology</h4> 31 <p>Google Play services provides you with easy access to Google services and is 32 tightly integrated with the Android OS. Easy-to-use client libraries are 33 provided for each service that let you implement the functionality you want 34 easier and faster.</p> 35 36 </div> 37 <div class="layout-content-col span-4"> 38 39 <h4>Standard Authorization</h4> 40 <p>All products in Google Play services share a common authorization API 41 that leverages the existing Google accounts on the device. You and your 42 users have a consistent and safe way to grant and receive OAuth2 access tokens 43 to Google services.</p> 44 45 </div> 46 <div class="layout-content-col span-4"> 47 48 <h4>Automatic Updates</h4> 49 <p>Devices running Android 2.3 or higher that have the Google Play Store 50 app will automatically receive updates to Google Play services. Enhance 51 your app with the most recent version of Google Play services without worrying 52 about your users' Android version.</p> 53 54 </div> 55 56 57 <p>To start integrating Google Play services into your app, 58 follow the <a href="/google/play-services/setup.html">Setup</a> guide.</p> 59 60 </div> 61 62 <h2 style="margin-top:0" id="newfeatures">New Features</h2> 63 64 <div class="toggle-content opened"> 65 <p><a href="#" onclick="return toggleContent(this)"> 66 <img src="{@docRoot}assets/images/triangle-opened.png" 67 class="toggle-content-img" 68 alt=""/>Google Play services, Version 6.5</a> <em>(December 2014)</em> 69 </p> 70 71 <div class="toggle-content-toggleme"> 72 <dl> 73 <dt>Highlights in Version 6.5</dt> 74 75 <dd> 76 <p>For a summary of the feature highlights in Google Play services 6.5, see the 77 announcement 78 <a href="http://android-developers.blogspot.com/2014/11/google-play-services-65.html" 79 class="external-link">blog post</a>.</p> 80 <ul> 81 <li><strong>Maps</strong> - The new <em>lite mode</em> lets your app display a 82 bitmap image of a map, while still being able to control markers and shapes 83 client-side. This is particularly useful when you're showing a number of small 84 maps. You can enable or disable a new map toolbar that lets users open 85 <a href="https://www.google.com/maps" class="external-link">Google Maps</a> and 86 get directions and turn by turn navigation to the selected marker. The 87 {@code getMap()} method in 88 <a href="{@docRoot}reference/com/google/android/gms/maps/MapView.html">{@code MapView}</a> 89 and 90 <a href="{@docRoot}reference/com/google/android/gms/maps/MapFragment.html">{@code MapFragment}</a> 91 is now deprecated in favor of the new {@code getMapAsync()} method. Similarly, 92 the new {@code getStreetViewPanoramaAsync()} method in 93 <a href="{@docRoot}reference/com/google/android/gms/maps/StreetViewPanoramaView.html">{@code StreetViewPanoramaView}</a> and 94 <a href="{@docRoot}reference/com/google/android/gms/maps/StreetViewPanoramaFragment.html">{@code StreetViewPanoramaFragment}</a> 95 enables you to get a ready-to-use Street View panorama. 96 <ul> 97 <li><a href="https://developers.google.com/maps/documentation/android/lite.html" 98 class="external-link">Lite mode maps developer guide</a></li> 99 <li><a href="https://developers.google.com/maps/documentation/android/interactivity.html#toolbar" 100 class="external-link">Map toolbar developer guide</a></li> 101 </ul> 102 </li> 103 <li><strong>Drive</strong> - This release introduces support for inserting or 104 updating custom properties. You can now create empty files (for example, a user 105 preference file that is empty until the user defines some application property). 106 <ul> 107 <li><a href="{@docRoot}reference/com/google/android/gms/drive/metadata/CustomPropertyKey.html">{@code CustomPropertyKey} API reference</a></li> 108 <li><a href="https://developers.google.com/drive/android/create-file.html" 109 class="external-link">Creating empty files developer guide</a></li> 110 </ul> 111 </li> 112 <li><strong>Fit</strong> - The Fit API now supports activity segments 113 (<a href="{@docRoot}reference/com/google/android/gms/fitness/data/DataType.html#TYPE_ACTIVITY_SEGMENT">{@code DataType.TYPE_ACTIVITY_SEGMENT}</a>), which 114 enable you to represent pauses within a workout session and to annotate time 115 intervals inside a session with different fitness activities. 116 </li> 117 <li><strong>Wallet</strong> - You can now enable donations from your Android 118 app in the same way you enable purchases. To do so, create a 119 <a href="{@docRoot}reference/com/google/android/gms/wallet/fragment/WalletFragment.html">{@code WalletFragment}</a> and specify the 120 <a href="{@docRoot}reference/com/google/android/gms/wallet/fragment/WalletFragmentMode.html#BUY_BUTTON">{@code BUY_BUTTON}</a> 121 mode, then set the button text to 122 <a href="{@docRoot}reference/com/google/android/gms/wallet/fragment/BuyButtonText.html#DONATE_WITH_GOOGLE">{@code DONATE_WITH_GOOGLE}</a>. 123 <p class="note"><strong>Note:</strong> Use of the <em>Donate with Google</em> 124 button is limited to 501(c)(3) organizations. For more information, see the 125 <a href="https://support.google.com/wallet/business/answer/75724?hl=en&rd=1" class="external-link">Content policies</a>.</p> 126 <ul> 127 <li><a href="https://developers.google.com/wallet/instant-buy/android/tutorial.html" class="external-link">Setting button text developer guide</a></li> 128 </ul> 129 </li> 130 <li><strong>Granular dependency management</strong> - If the number of 131 references in your app exceeds the 132 <a href="{@docRoot}tools/building/multidex.html">65K method reference limit</a>, 133 your app may fail to compile. To avoid this problem, you can include just 134 the specific Google Play services APIs your app uses, instead of all of them, 135 when compiling your app. For more details, see the Android Studio setup 136 instructions in 137 <a href="{@docRoot}google/play-services/setup.html">Setting Up Google Play Services</a>. 138 </li> 139 <li><strong>Deprecated clients</strong> - The {@code ActivityRecognitionClient}, 140 {@code LocationClient}, and {@code PlusClient} classes are deprecated. If 141 you used those APIs in your app and want to call Google Play services 6.5 142 or higher APIs, you must switch to the new programming model that utilizes 143 <a href="{@docRoot}reference/com/google/android/gms/common/api/GoogleApiClient.html">{@code GoogleApiClient}</a>. For more information about using <a href="{@docRoot}reference/com/google/android/gms/common/api/GoogleApiClient.html">{@code GoogleApiClient}</a>, see <a href="{@docRoot}google/auth/api-client.html">Accessing Google APIs</a>. 144 <p>Use these APIs instead of the deprecated APIs:</p> 145 <ul> 146 <li>If you were previously using {@code ActivityRecognitionClient}, call 147 <a href="{@docRoot}reference/com/google/android/gms/location/ActivityRecognition.html">{@code ActivityRecognition}</a> instead.</li> 148 <li>If you were previously using {@code LocationClient}, call the APIs in the 149 <a href="{@docRoot}reference/com/google/android/gms/location/package-summary.html">{@code com.google.android.gms.location} package</a> instead.</li> 150 <li>If you were previously using {@code PlusClient}, call the APIs in the 151 <a href="{@docRoot}reference/com/google/android/gms/plus/package-summary.html">{@code com.google.android.gms.plus} package</a> instead.</li> 152 </ul> 153 </li> 154 </ul> 155 </dd> 156 </dl> 157 158 <div class="toggle-content closed"> 159 <p><a href="#" onclick="return toggleContent(this)"> 160 <img src="{@docRoot}assets/images/triangle-closed.png" 161 class="toggle-content-img" 162 alt=""/>Google Play services, Version 6.1</a> <em>(October 2014)</em> 163 </p> 164 165 <div class="toggle-content-toggleme"> 166 <dl> 167 <dt>Highlights in Version 6.1</dt> 168 169 <dd> 170 <p>For a summary of the feature highlights in Google Play services 6.1, see the 171 announcement 172 <a href="http://android-developers.blogspot.com/2014/09/google-play-services-61.html" 173 class="external-link">blog post</a>.</p> 174 <ul> 175 <li><strong>Drive</strong> - This release adds the 176 <a href="{@docRoot}reference/com/google/android/gms/drive/events/CompletionEvent.html"> 177 <code>CompletionEvent</code></a> class to notify you when actions are 178 committed to the server and respond to conflicts. Recent and starred views 179 are now available in the file picker user interface provided by 180 <a href="{@docRoot}reference/com/google/android/gms/drive/OpenFileActivityBuilder.html"> 181 <code>OpenFileActivityBuilder</code><a/>, and the user interface has been 182 updated to use 183 <a href="http://www.google.com/design/spec/material-design/introduction.html" 184 class="external-link">material design</a>. A new 185 <a href="{@docRoot}reference/com/google/android/gms/drive/DriveResource.html#setParents(com.google.android.gms.common.api.GoogleApiClient, java.util.Set<com.google.android.gms.drive.DriveId>)"> 186 DriveResource.setParents()</a> method makes it possible to organize files 187 and folders. In addition, the 188 <a href="{@docRoot}reference/com/google/android/gms/drive/Contents.html"> 189 <code>Contents</code></a> 190 class has been replaced with a 191 <a href="{@docRoot}reference/com/google/android/gms/drive/DriveContents.html"> 192 <code>DriveContents</code></a> class that simplifies working with file 193 contents. 194 <ul> 195 <li><a href="https://developers.google.com/drive/release-notes" 196 class="external-link">Drive SDK release notes</a></li> 197 <li><a href="https://developers.google.com/drive/android/completion" 198 class="external-link">Completion events developer guide and Google 199 Developers video</a></li> 200 <li><a href="https://developers.google.com/drive/android/intro?hl=pt-PT#activity_builders" 201 class="external-link">Using the OpenFileActivity Builder</a></li> 202 </ul> 203 </li> 204 205 <li><strong>Tag Manager</strong> - Google Tag Manager now supports 206 <a href="https://developers.google.com/analytics/devguides/collection/android/v4/enhanced-ecommerce" 207 class="external-link">Enhanced Ecommerce</a> through the 208 <a href="https://support.google.com/tagmanager/answer/3281379" 209 class="external-link">Universal Analytics tag</a>. 210 <ul> 211 <li><a href="https://developers.google.com/analytics/devguides/collection/upgrade/" 212 class="external-link">Universal Analytics Upgrade Center</a></li> 213 <li><a href="https://developers.google.com/tag-manager/android/v4/" 214 class="external-link">Enhanced Ecommerce developer guide</a></li> 215 </ul> 216 </li> 217 218 <li><strong>Fit</strong> - The Google Fit developer preview, initially 219 <a href="http://googledevelopers.blogspot.com/2014/08/google-fit-preview-sdk-now-available.html" 220 class=""external-link>announced</a> in August, has been 221 refreshed to enable you to test your new fitness apps on any Android device. 222 <ul> 223 <li><a href="https://developers.google.com/fit/preview" 224 class="external-link">Google Fit developer guide</a></li> 225 <li><a href="{@docRoot}reference/com/google/android/gms/fitness/package-summary.html"> 226 Fit API reference</a></li> 227 </ul> 228 </li> 229 230 </ul> 231 </dd> 232 </dl> 233 234 </div> 235 </div> 236 237 <div class="toggle-content closed"> 238 <p><a href="#" onclick="return toggleContent(this)"> 239 <img src="{@docRoot}assets/images/triangle-closed.png" 240 class="toggle-content-img" 241 alt=""/>Google Play services, Version 5.0</a> <em>(July 2014)</em> 242 </p> 243 244 <div class="toggle-content-toggleme"> 245 <dl> 246 <dt>Highlights in Version 5.0</dt> 247 248 <dd> 249 <p>For a summary of the feature highlights in Google Play services 5.0, see the 250 announcement 251 <a href="http://android-developers.blogspot.com/2014/07/google-play-services-5.html" 252 class="external-link">blog post</a>.</p> 253 <ul> 254 <li><strong>Analytics</strong> - The Enhanced Ecommerce API allows your app 255 to send product related information and actions to Google Analytics. Use this 256 API to measure impressions of products seen by users, checkout steps, and 257 products purchased. This information can be analyzed for the effectiveness of 258 marketing and merchandising efforts, including the impact of internal 259 promotions, coupons, and affiliate marketing programs. 260 <ul> 261 <li><a href="https://developers.google.com/analytics/devguides/collection/android/v4/enhanced-ecommerce.html" class="external-link">Enhanced Ecommerce developer guide</a></li> 262 <li><a href="{@docRoot}reference/com/google/android/gms/analytics/ecommerce/package-summary.html">Enhanced Ecommerce API reference</a></li> 263 </ul> 264 </li> 265 266 <li><strong>App Indexing</strong> - The App Indexing API provides a way 267 for developers to notify Google about deep links in their native apps and 268 allows the Google Search App, version 3.6 and above, to drive re-engagement 269 through Google Search 270 <a href="https://support.google.com/websearch/answer/106230" 271 class="external-link">query autocompletions</a>, providing fast and easy access to 272 inner pages in apps. 273 <ul> 274 <li><a href="https://developers.google.com/app-indexing/webmasters/appindexingapi.html" 275 class="external-link">App Indexing developer guide</a></li> 276 <li><a href="{@docRoot}reference/com/google/android/gms/appindexing/package-summary.html">App 277 Indexing API reference</a></li> 278 </ul> 279 </li> 280 281 <li><strong>Drive</strong> - The Query APIs now allow your app to retrieve 282 Drive files by sorted order, according to a developer-specified sorting criteria. 283 <ul> 284 <li><a href="https://developers.google.com/drive/android/queries.html" 285 class="external-link">Queries developer guide</a></li> 286 <li><a href="{@docRoot}reference/com/google/android/gms/drive/query/package-summary.html">Sortable 287 queries API reference</a></li> 288 </ul> 289 </li> 290 291 <li><strong>Play Games</strong> - This release introduces the Quests and 292 Saved Games services. The Quests service gives you the ability to issue 293 time-bound in-game challenges based on Events data sent from your game, without 294 republishing your game (for example: Your game sends an event each time a 295 gem is found by a player, and you create a quest to Find 20 gems). Players 296 can complete a quest to earn rewards. Saved Games offers improved functionality 297 for saving game state information and visually displaying player game progression. 298 <ul> 299 <li><a href="https://developers.google.com/games/services/android/quests.html" 300 class="external-link">Events and Quests developer guide</a></li> 301 <li><a href="{@docRoot}reference/com/google/android/gms/games/event/package-summary.html">Events 302 API reference</a></a></li> 303 <li><a href="{@docRoot}reference/com/google/android/gms/games/quest/package-summary.html">Quests 304 API reference</a></a></li> 305 <li><a href="https://developers.google.com/games/services/android/savedgames.html" 306 class="external-link">Saved Games developer guide</a></li> 307 <li><a href="{@docRoot}reference/com/google/android/gms/games/snapshot/package-summary.html">Saved 308 Games API reference</a></a></li> 309 </ul> 310 </li> 311 312 <li><strong>Security</strong> - The Security API allows you to easily 313 install a dynamic security provider. New versions of Google Play Services will 314 keep the security provider up-to-date with the latest security fixes as those 315 become available. 316 <ul> 317 <li><a href="{@docRoot}reference/com/google/android/gms/security/package-summary.html">Security 318 API reference</a></li> 319 </ul> 320 </li> 321 322 <li><strong>Wallet</strong> - The Save to Google API for Android lets users 323 save Wallet Objects to their Google Wallet with the click of a button displayed 324 in your Android app. 325 <ul> 326 <li><a href="https://developers.google.com/wallet/objects/savetowalletnative.html" 327 class="external-link">Save to Google API for Android tutorial</a></li> 328 </ul> 329 </li> 330 331 332 <li><strong>Wearables</strong> - The Wearable Data Layer API provides a 333 communication channel between your handheld and wearable apps. The API 334 consists of a set of data objects that the system can send and synchronize 335 and listeners that notify your apps of important events from the other 336 device. 337 <ul> 338 <li><a href="{@docRoot}training/wearables/apps/index.html">Building 339 Wearable Apps training class</a></li> 340 <li><a href="{@docRoot}reference/com/google/android/gms/wearable/package-summary.html">Wearables 341 API reference</a></li> 342 </ul> 343 </li> 344 345 </ul> 346 </dd> 347 </dl> 348 349 </div> 350 </div> 351 352 <div class="toggle-content closed"> 353 <p><a href="#" onclick="return toggleContent(this)"> 354 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" 355 alt=""/>Google Play services, Version 4.4</a> <em>(May 2014)</em> 356 </p> 357 358 <div class="toggle-content-toggleme"> 359 <dl> 360 <dt>Highlights in Version 4.4</dt> 361 362 <dd> 363 <p>For a summary of the feature highlights in Google Play services 4.4, see the 364 announcement <a href="http://android-developers.blogspot.com/2014/05/google-play-services-44.html" class="external-link">blog post</a>.</p> 365 <ul> 366 <li><strong>Maps</strong> - New features for Street View and enhanced control of 367 Indoor Maps. 368 <ul> 369 <li><a href="http://developers.google.com/maps/documentation/android/streetview.html" class="external-link">Street View developer guide</a> - Add Street View to your app and programmatically control 370 the users experience. 371 <li><a href="http://developers.google.com/maps/documentation/android/map.html#indoor_maps" class="external-link">Indoor Maps developer guide</a> - Customize the level picker 372 and specify the active level of a building.</a> 373 </ul> 374 </li> 375 376 <li><strong>Activity recognition</strong> - The Location API has been updated with new activity detectors for running and walking. 377 <ul> 378 <li><a href="{@docRoot}reference/com/google/android/gms/location/DetectedActivity.html"><code>DetectedActivity</code> class reference</a> 379 </ul> 380 </li> 381 382 <li><strong>Mobile Ads</strong> - The new in-app purchase APIs allow 383 publishers to display in-app purchase ads, which enables users to purchase 384 advertised items directly. 385 <ul> 386 <li><a href="https://developers.google.com/mobile-ads-sdk/docs/admob/advanced#play-inapppurchaselistener" class="external-link">In-app purchase APIs developer guide</a> - 387 Enable in-app purchases via ads by using the in-app purchase APIs. 388 <li><a href="{@docRoot}reference/com/google/android/gms/ads/purchase/package-summary.html">In-app purchase API reference</a> 389 </ul> 390 </li> 391 392 <li><strong>Wallet Fragment</strong> - The new Wallet Fragment API allows you 393 to easily integrate Google Wallet Instant Buy with an existing app. 394 <ul> 395 <li><a href="http://developers.google.com/wallet/instant-buy/android/tutorial.html#about_walletfragment" class="external-link">About Wallet Fragment</a> - Tutorial showing how to 396 use wallet fragment to handle user events and to automate key parts of the purchase lifecycle. 397 <li><a href="http://developers.google.com/wallet/instant-buy/diagrams.html#detailed_api_process_flow" class="external-link">Detailed API process flow</a></a> 398 </ul> 399 </li> 400 </ul> 401 </dd> 402 </dl> 403 404 </div> 405 </div> 406 407 <div class="toggle-content closed"> 408 <p><a href="#" onclick="return toggleContent(this)"> 409 <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" 410 alt=""/>Google Play services, Version 4.3</a> <em>(March 2014)</em> 411 </p> 412 413 <div class="toggle-content-toggleme"> 414 <dl> 415 <dt>Highlights in Version 4.3</dt> 416 <dd> 417 <p>For a summary of the feature highlights in Google Play services 4.3, see the 418 announcement <a href="http://android-developers.blogspot.com/2014/03/google-play-services-43.html" class="external-link">blog post</a>.</p> 419 <ul> 420 <li><strong>Play Games</strong> - The new Game Gifts API enables games to send virtual in-game requests to anyone in a players circles or through player search. 421 <ul> 422 <li><a href="http://developers.google.com/games/services/android/giftRequests.html" class="external-link">Developing Game Gifts in Android</a></li> 423 <li><a href="{@docRoot}reference/com/google/android/gms/games/request/package-summary.html">Game Gifts API reference</a></li> 424 </ul> 425 </li> 426 <li><strong>Analytics</strong> - Google Analytics and Tag Manager are now part of Google Play services. 427 <ul> 428 <li><a href="http://developers.google.com/analytics/devguides/collection/android/v4/" class="external-link">Getting Started with the Analytics API in Android</a></li> 429 <li><a href="/reference/com/google/android/gms/analytics/package-summary.html">Analytics API reference</a></li> 430 <li><a href="http://developers.google.com/tag-manager/android/" class="external-link">Getting Started with the Tag Manager API in Android</a></li> 431 <li><a href="{@docRoot}reference/com/google/android/gms/tagmanager/package-summary.html">Tag Manager API reference</a></li> 432 </ul> 433 </li> 434 <li><strong>Drive</strong> - Change notifications, offline content, and more. 435 <ul> 436 <li><a href="http://developers.google.com/drive/android/pinning.html" class="external-link">Pinning Files</a> - Make files available offline.</li> 437 <li><a href="http://developers.google.com/drive/android/events.html" class="external-link">Listening for Change Events</a> - Receive notifications for change events asynchronously.</li> 438 <li><a href="http://developers.google.com/drive/android/appfolder.html" class="external-link">Storing Application Data</a> - Store application data in a special hidden folder.</li> 439 </ul> 440 </li> 441 <li><strong>Address</strong> - Let your users provide complete addresses in a single click. 442 <ul> 443 <li><a href="{@docRoot}reference/com/google/android/gms/identity/intents/package-summary.html">Address API reference</a> </li> 444 </ul> 445 </li> 446 </ul> 447 </dd> 448 </dl> 449 </div> 450 </div> 451 452 <h2>How It Works</h2> 453 454 <h4 id="client-lib">The Google Play services client library</h4> 455 <p> 456 The client library contains the interfaces to the individual Google 457 services and allows you to obtain authorization from users to gain access 458 to these services with their credentials. It also contains APIs that allow 459 you to resolve any issues at runtime, such as a missing, disabled, or out-of-date 460 Google Play services APK. The client library has a light footprint if you use 461 <a href="/tools/help/proguard.html">ProGuard</a> as part of your build process, so it won't have 462 an adverse impact on your app's file size. 463 </p> 464 <p> 465 If you want to access added features or products, you can upgrade to a new version of the 466 client library as they are released. However, upgrading is not 467 necessary if you don't care about new features or bug fixes. 468 We anticipate more Google services to be continuously added, so be on the lookout for 469 these updates. 470 </p> 471 472 <div class="vspace size-2"> </div> 473 474 <div class="layout-content-row"> 475 <div class="layout-content-col span-6"> 476 <h4 id="apk">The Google Play services APK</h4> 477 <p> 478 The Google Play services APK contains the individual Google services and runs 479 as a background service in the Android OS. You interact with the background service 480 through the client library and the service carries out the actions on your behalf. 481 An easy-to-use authorization flow is also 482 provided to gain access to the each Google service, which provides consistency for both 483 you and your users. 484 </p> 485 <p> 486 The Google Play services APK is delivered through the Google Play Store, so 487 updates to the services are not dependent on carrier or OEM system image updates. In general, devices 488 running Android 2.3 (Gingerbread) or later and have the Google Play Store app installed receive updates within a 489 few days. This allows you to use the newest APIs in Google Play services and reach most of the 490 devices in the Android ecosystem (devices older than Android 2.3 or devices without the Google 491 Play Store app are not supported). 492 </p> 493 </div> 494 495 <div class="layout-content-col span-6"> 496 <img src="/images/play-services-diagram.png" /> 497 <p class="img-caption"><em>The Google Play services APK on user devices receives regular updates 498 for new APIs, features, and bug fixes.</em></p> 499 </div> 500 </div> 501 502 <h4 id="benefits">The benefits for your app</h4> 503 504 <p>Google Play services gives you the freedom to use the newest APIs for popular 505 Google services without worrying about device support. Updates to Google Play 506 services are distributed automatically by the Google Play Store and new versions 507 of the client library are delivered through the Android SDK Manager. This makes it 508 easy for you to focus on what's important: your users' experience.</p> 509 510 <p>To get started, <a href="{@docRoot}google/play-services/setup.html">set up</a> the SDK and check out 511 the various products in the Google Play services platform now!</p> 512