How to Download the Android Sdk Without Downloading Android Studio

How do I download the Android SDK without downloading Android Studio?

You can find the command line tools at the downloads page under the "Command line tools only" section.

Sample Image

These are the links provided in the page as of now (version 26.1.1):

  • Windows no installer: https://dl.google.com/android/repository/sdk-tools-windows-4333796.zip

  • MacOSX: https://dl.google.com/android/repository/sdk-tools-darwin-4333796.zip

  • Linux:
    https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip

Be sure to have read and agreed with the terms of service before downloading any of the command line tools.

The installer version for windows doesn't seem to be available any longer, this is the link for version 24.4.1:

  • Windows installer: https://dl.google.com/android/installer_r24.4.1-windows.exe

How to download android emulator without using android studio

Yes, you can download the android sdk without Android Studio

Check out the downloads page.

Links to Android SDK latest version -

Windows - https://dl.google.com/android/repository/commandlinetools-win-6609375_latest.zip

Mac - https://dl.google.com/android/repository/commandlinetools-mac-6609375_latest.zip

Linux - https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip

From Stack overflow answer

Link to Emulator -

32-bit

MacOS - https://dl.google.com/android/repository/emulator-darwin-6855416.zip

Windows - https://dl.google.com/android/repository/emulator-windows-6855416.zip

Linux - https://dl.google.com/android/repository/emulator-linux-6855416.zip

64-bit

MacOS - https://dl.google.com/android/repository/emulator-darwin-6885378.zip

Windows - https://dl.google.com/android/repository/emulator-windows-6885378.zip

Linux - https://dl.google.com/android/repository/emulator-linux-6885378.zip

Note: These are the latest version of android emulators - 30.1.5

Install Android emulator without installing Android Studio

I am answering my own question.

Where I made wrong is, decompressing to wrong directory and using wrong --sdk_root.
As said in here, I have to create a dir called cmdline-tools and decompress in it. Now we will have another cmdline-tools dir. We have to rename it to the respective commandline tool version we are using. In my case it is 3.0.

Finally my script should be look like below.

mkdir -p ~/AndroidSDK/cmdline-tools
cd ~/AndroidSDK/cmdline-tools
wget https://dl.google.com/android/repository/commandlinetools-linux-6858069_latest.zip -o tools.zip
unzip -q tools.zip
mv cmdline-tools 3.0
cd 3.0/bin
./sdkmanager --list --include_obsolete --verbose
./sdkmanager --verbose "emulator" "system-images;android-25;default;x86_64" "platforms;android-25" "platform-tools"
./sdkmanager --licenses
./avdmanager -v create avd -n Nougat -k "system-images;android-25;default;x86_64"
../../../emulator/emulator -avd Nougat

See https://github.com/HemanthJabalpuri/AndroidEmulator_without_Studio for more info.



Related Topics



Leave a reply



Submit