Last active
October 30, 2025 22:36
-
Star
(293)
You must be signed in to star a gist -
Fork
(79)
You must be signed in to fork a gist
-
-
Save jjvillavicencio/18feb09f0e93e017a861678bc638dcb0 to your computer and use it in GitHub Desktop.
Install Android SDK on Windows Bash (WSL)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /home/<user>/ | |
| sudo apt-get install unzip | |
| wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
| unzip sdk-tools-linux-4333796.zip -d Android | |
| rm sdk-tools-linux-4333796.zip | |
| sudo apt-get install -y lib32z1 openjdk-8-jdk | |
| export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | |
| export PATH=$PATH:$JAVA_HOME/bin | |
| printf "\n\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nexport PATH=\$PATH:\$JAVA_HOME/bin" >> ~/.bashrc | |
| cd Android/tools/bin | |
| ./sdkmanager "platform-tools" "platforms;android-26" "build-tools;26.0.3" | |
| export ANDROID_HOME=/home/<user>/Android | |
| export PATH=$PATH:$ANDROID_HOME/tools | |
| export PATH=$PATH:$ANDROID_HOME/platform-tools | |
| printf "\n\nexport ANDROID_HOME=/home/<user>/Android\nexport PATH=\$PATH:\$ANDROID_HOME/tools\nexport PATH=\$PATH:\$ANDROID_HOME/platform-tools" >> ~/.bashrc | |
| android update sdk --no-ui | |
| sudo apt-get install gradle | |
| gradle -v | |
| adb start-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is setup guide I used to install headless android studio in wsl2. courtesy: gemini pro
π οΈ Complete WSL2 Android SDK Setup Guide
This guide ensures you have a working
sdkmanager, platform tools (adb,fastboot), and the necessary Android platform 36 components installed and accessible from your WSL2 terminal.1. βοΈ Prerequisites and Setup
This assumes you have already downloaded and unzipped the Android Command-line Tools (e.g., to
$HOME/Android/cmdline-tools).1.1. Create the Directory Structure
Make sure your directory structure looks like this. If you haven't, run:
mkdir -p $HOME/Android/cmdline-tools1.2. Correctly Place the
cmdline-toolsMove the contents of the unzipped
cmdline-toolsfolder (which should contain abin,lib,NOTICE.txt, etc. directory/files) into a directory namedlatest:(The
sdkmanagerexecutable must be in$HOME/Android/cmdline-tools/latest/bin/)2. π Configure Environment Variables
You must add the necessary paths to your shell configuration file (
~/.bashrcor~/.zshrc) so the system can findsdkmanagerandadbfrom anywhere.Open your shell configuration file:
Add the following block to the end of the file:
2.1. Load the New Configuration
Apply the changes to your current terminal session:
3. π₯ Install SDK Packages
Now that the
sdkmanagercommand is available in your PATH, you can install the required components.Use the command you initially wanted to run, but without the
./prefix:"platform-tools": Installsadb,fastboot, etc."platforms;android-36": Installs the Android 36 SDK platform files."build-tools;36.0.0": Installs the necessary build tools (version 36.0.0 is used as a reference).4. β Accept Licenses
The SDK will not work until you accept the licenses. Use the
sdkmanagerfor this as well:yes | sdkmanager --licenses5. π¬ Verification and ADB Check
Check if everything is installed correctly:
Step 5.1: Verify
adbPathExpected Output:
/home/youruser/Android/platform-tools/adb(or similar)Step 5.2: Verify SDK Platform
ls $ANDROID_HOME/platformsExpected Output: You should see a folder like
android-36listed.Step 5.3: Check for Connected Devices (ADB)
To see devices, remember to use the correct command:
Expected Output (if no device is connected):
If you still get
Command 'android' not found, remember thatandroidis obsolete and has been replaced bysdkmanagerandavdmanager.This comprehensive list of steps should serve as a complete reference for your WSL2 Android SDK environment setup.