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.
No | Package Name | API | Version | OS | Size (MB) |
---|---|---|---|---|---|
1 | Google Repository.zip↓ | 58 | 58 | ALL | 205.45 MB |
2 | Google Play services.zip↓ | 49 | 49 | ALL | 14.74 MB |
3 | Google USB Driver.zip↓ | 13 | 13 | WINDOWS | 8.28 MB |
4 | Android Auto Desktop Head Unit Emulator x64.zip↓ | 2 | 2.0 | WINDOWS | 6.49 MB |
5 | Google Web Driver.zip↓ | 2 | 2 | ALL | 3.87 MB |
6 | Android Auto Desktop Head Unit Emulator x64.zip↓ | 2 | 2.0 | LINUX | 6.58 MB |
7 | Android Auto Desktop Head Unit Emulator x64.zip↓ | 2 | 2.0 | MACOSX | 7.66 MB |
8 | Google Play Licensing Library.zip↓ | 1 | 1 | ALL | 0.07 MB |
9 | Google Play APK Expansion library.zip↓ | 1 | 1 | ALL | 0.11 MB |
10 | Android Auto API Simulators.zip↓ | 1 | 1 | ALL | 2.07 MB |
11 | Google Play Instant Development SDK.zip↓ | 1 | 1.9.0 | ALL | 37.69 MB |
12 | Android Emulator Hypervisor Driver for AMD Processors (installer).zip↓ | 1 | 1.8.0 | WINDOWS | 0.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'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:
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/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 - [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 - [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 - [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 - [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 - [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 - [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 - [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 - [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 - [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 - [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 - [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 - DONE! :D