Nov 13, 2019 Google Play services is used to update Google apps and apps from Google Play. This component provides core functionality like authentication to your Google services, synchronized contacts, access to all the latest user privacy settings,.
- Apr 22, 2016 How to create a 3D Terrain with Google Maps and height maps in Photoshop - 3D Map Generator Terrain - Duration: 20:32. Orange Box Ceo 8,544,055 views.
- Jun 09, 2017 Apps How install Google Play Services in Emulator Android Studio. Discussion in 'Android Development' started by envarao42, Jun 9, 2017. This version has google play services in a version 9.2.56 and I need to update or install a version 9.6.1 or higher on that device. #8 envarao42, Jun 9, 2017.
Last Time Checked
All the packages were last checked on:
Google Play Services Sdk
All the packages were taken directly from the official Google's Android host.
No | Package Name | API | Version | OS | Size (MB) |
---|---|---|---|---|---|
1 | Google Play services.zip↓ | 49 | 49 | ALL | 14.74 MB |
This package will ALWAYS be installed on the same path regardless of the newer versions available.
It CAN NOT be installed side-by-side with other versions and it's install path DOES NOT follow Android API numbering scheme.
Upon updates, it overrides previous installation completely.
You can install ONLY ONE VERSION for this package installation.
The offline installation is done using Bash'sunzip
that is widely avaialble on Windows (with WSL), Linux and Mac.However you can use whatever unzipping/decompressing/extracting tools you like that support extracting .zip, but please pay attention carefully so that the package is installed correctly and is recognized.We use Bash'sunzip
for this purpose , respectively.
- Download the latest version of the packages available above.If it has different OSes, choose one that match your development OS.
- After finished, you can DISCONNECT any internet connections.
- Locate the downloaded .zip pacakge into accessible location, as you will need that location for installation purpose.
- Open up CLI/CMD, for Windows make sure you have WSL or Bash for Windows support.
- Now follow the steps below, it mimics CMD interface to make it easier for you:
Google Play Services Android Studio
cd $ANDROID_SDK_ROOT
First, go to the root directory of Android SDK installation. On Windows you might also type:cd %ANDROID_SDK_ROOT%
Remember! You should only proceed to the next step if only you already in the root directory of Android SDK.- Now, from rootdir of Android SDK, locate the package you've downloaded and then extract the package based on your OS.
Make sure to change the /path/to/ with absolute path that points to actual downloaded package file location on your local disk. - [all OSes]
rm -rf extras/google/google_play_services && unzip path/to/google_play_services_v16_1_rc09.zip -d extras/google
extract the package archive as-is from the root SDK directory, to install version 49 on all OSes - DONE! :D