On this page
Introducción
Instala Android Studio.
Puedes utilitzar JetBrains Toolbox.
Al arrancar por primera no encontrará ninguna Android SDK.
Continua (Next) el SDK se instalará en C:\Users\USERNAME\AppData\Local\Android\Sdk, donde USERNAME es el usuario de tu PC.
To install the Android SDK on macOS, the most reliable path is via Android Studio (it bundles the SDK Manager and keeps everything updated). Here are the practical options.
To install the Android SDK on macOS, the most reliable path is via Android Studio (it bundles the SDK Manager and keeps everything updated). Here are the practical options.
Option A (recommended): Install via Android Studio
- Install Android Studio
- Download from the official Android Developer site (Android Studio for Mac).
- Run Android Studio → Setup Wizard
- When prompted, select Standard (unless you need a custom location).
- The wizard installs:
- Android SDK
- Platform Tools (
adb,fastboot) - Emulator + system images (optional)
- Verify / manage SDK components
- Android Studio → Settings/Preferences → Appearance & Behavior → System Settings → Android SDK
- From there you can install:
- SDK Platforms (Android API levels)
- SDK Tools (Platform-tools, Build-tools, Command-line Tools, Emulator)
Where it ends up on macOS
Typically:
~/Library/Android/sdk
Add the SDK tools to your shell PATH (so adb works in Terminal)
If you use zsh (default on modern macOS), add this to ~/.zshrc:
export ANDROID_SDK_ROOT="$HOME/Library/Android/sdk"export PATH="$PATH:$ANDROID_SDK_ROOT/platform-tools:$ANDROID_SDK_ROOT/cmdline-tools/latest/bin:$ANDROID_SDK_ROOT/emulator"Then reload your shell:
source ~/.zshrcTest:
adb --versionsdkmanager --versionOption B: Install SDK Command-line Tools only (no Android Studio)
Use this if you don’t want the full IDE.
- Download Command line tools (macOS) from the Android Developer “SDK Tools” page.
- Unzip and place it like this (important folder layout):
mkdir -p "$HOME/Library/Android/sdk/cmdline-tools/latest"mv <unzipped-folder>/* "$HOME/Library/Android/sdk/cmdline-tools/latest/"- Add the same
ANDROID_SDK_ROOT+PATHentries as above. - Install components:
sdkmanager --licensessdkmanager "platform-tools" "platforms;android-34" "build-tools;34.0.0"Common macOS gotchas
- Java requirement (for command-line builds/tools): Make sure you have a JDK installed (you mentioned Java is in your stack, so you’re likely fine).
- Apple Silicon (ARM64): Android Studio and the Emulator work well; choose ARM64 system images for best performance.
- If
adbisn’t found, it’s almost always a PATH issue—double-checkplatform-toolsis in your PATH.