Android SDK Extras - Google Extras Download

Android SDK Extras - Google Extras


Last Time Checked

All the packages were last checked on:

All the packages were taken directly from the official Google's Android host.

All Google Extras by API,Version and OSes
NoPackage NameAPIVersionOSSize (MB)
1Google Repository.zip5858ALL205.45 MB
2Google Play services.zip4949ALL14.74 MB
3Google USB Driver.zip1313WINDOWS8.28 MB
4Android Auto Desktop Head Unit Emulator x64.zip22.0WINDOWS6.49 MB
5Google Web Driver.zip22ALL3.87 MB
6Android Auto Desktop Head Unit Emulator x64.zip22.0LINUX6.58 MB
7Android Auto Desktop Head Unit Emulator x64.zip22.0MACOSX7.66 MB
8Google Play Licensing Library.zip11ALL0.07 MB
9Google Play APK Expansion library.zip11ALL0.11 MB
10Android Auto API Simulators.zip11ALL2.07 MB
11Google Play Instant Development SDK.zip11.9.0ALL37.69 MB
12Android Emulator Hypervisor Driver for AMD Processors (installer).zip11.8.0WINDOWS0.16 MB

How to install offline Android SDK Extras - Google Extras?

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's unzip 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's unzip 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:

X
CMD Install Android SDK Extras - Google Extras manually
@usr~
cd $ANDROID_SDK_ROOT1
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/google_m2repository_gms_v11_3_rc05_wear_2_0_5.zip -d extras/google(2.A all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/google_play_services_v16_1_rc09.zip -d extras/google(2.B all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/usb_driver_r13-windows.zip -d extras/google(2.C windows)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/desktop-head-unit-windows-x64_r02.0.zip -d extras/google/auto && mv desktop-*/* . && rm -rf desktop-*(2.D windows)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/webdriver_r02.zip -d extras/google(2.E all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/desktop-head-unit-linux-x64_r02.0.zip -d extras/google/auto && mv desktop-*/* . && rm -rf desktop-*(2.F linux)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/desktop-head-unit-darwin-x64_r02.0.zip -d extras/google/auto && mv desktop-*/* . && rm -rf desktop-*(2.G macosx)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/market_licensing-r02.zip -d extras/google/market_licensing && mv google_*/* . && rm -rf google_*(2.H all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/market_apk_expansion-r03.zip -d extras/google/market_apk_expansion && mv goolge_*/* . && rm -rf goolge_*(2.I all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/simulator_r01.zip -d extras/google(2.J all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/iasdk-1.9.0-1566514721.zip -d extras/google/instantapps && mv sdk/* . && rm -rf sdk(2.K all)
@usr$ANDROID/SDK/ROOT
rm -rf extras/google/m2repository && unzip path/to/gvm-windows_v1_8_0.zip -d extras/google/Android_Emulator_Hypervisor_Driver(2.L windows)

  1. 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.
  2. 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.
    1. [all OSes]
      rm -rf extras/google/m2repository && unzip path/to/google_m2repository_gms_v11_3_rc05_wear_2_0_5.zip -d extras/google
      extract the package archive as-is from the root SDK directory, to install version 58 on all OSes
    2. [all OSes]
      rm -rf extras/google/m2repository && 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
    3. [windows Only]
      rm -rf extras/google/m2repository && unzip path/to/usb_driver_r13-windows.zip -d extras/google
      extract the package archive as-is from the root SDK directory, to install version 13 on windows
    4. [windows Only]
      rm -rf extras/google/m2repository && unzip path/to/desktop-head-unit-windows-x64_r02.0.zip -d extras/google/auto && mv desktop-*/* . && rm -rf desktop-*
      extract the package archive as-is from the root SDK directory, to install version 2.0 on windows
    5. [all OSes]
      rm -rf extras/google/m2repository && unzip path/to/webdriver_r02.zip -d extras/google
      extract the package archive as-is from the root SDK directory, to install version 2 on all OSes
    6. [linux Only]
      rm -rf extras/google/m2repository && unzip path/to/desktop-head-unit-linux-x64_r02.0.zip -d extras/google/auto && mv desktop-*/* . && rm -rf desktop-*
      extract the package archive as-is from the root SDK directory, to install version 2.0 on linux
    7. [macosx Only]
      rm -rf extras/google/m2repository && unzip path/to/desktop-head-unit-darwin-x64_r02.0.zip -d extras/google/auto && mv desktop-*/* . && rm -rf desktop-*
      extract the package archive as-is from the root SDK directory, to install version 2.0 on macosx
    8. [all OSes]
      rm -rf extras/google/m2repository && unzip path/to/market_licensing-r02.zip -d extras/google/market_licensing && mv google_*/* . && rm -rf google_*
      extract the package archive as-is from the root SDK directory, to install version 1 on all OSes
    9. [all OSes]
      rm -rf extras/google/m2repository && unzip path/to/market_apk_expansion-r03.zip -d extras/google/market_apk_expansion && mv goolge_*/* . && rm -rf goolge_*
      extract the package archive as-is from the root SDK directory, to install version 1 on all OSes
    10. [all OSes]
      rm -rf extras/google/m2repository && unzip path/to/simulator_r01.zip -d extras/google
      extract the package archive as-is from the root SDK directory, to install version 1 on all OSes
    11. [all OSes]
      rm -rf extras/google/m2repository && unzip path/to/iasdk-1.9.0-1566514721.zip -d extras/google/instantapps && mv sdk/* . && rm -rf sdk
      extract the package archive as-is from the root SDK directory, to install version 1.9.0 on all OSes
    12. [windows Only]
      rm -rf extras/google/m2repository && unzip path/to/gvm-windows_v1_8_0.zip -d extras/google/Android_Emulator_Hypervisor_Driver
      extract the package archive as-is from the root SDK directory, to install version 1.8.0 on windows
  3. DONE! :D