Below are clear, step-by-step instructions to download, install, and fully set up the latest version of Android Studio on Windows. (The steps are almost identical for macOS & Linux—differences noted.)
✅ 1. Download Android Studio
Windows / Mac / Linux
- Go to the official Android Studio download page:
https://developer.android.com/studio
(This is the official Google site—never download from third-party sites.) - Click “Download Android Studio”.
- Read & accept the Terms and Conditions.
- Your download will start automatically.
✅ 2. Install Android Studio
Windows (.exe file)
- Double-click the downloaded file:
android-studio-ide-xxxx.exe - Select Next → choose components:
- Android Studio ✔️
- Android Virtual Device (AVD) ✔️ (recommended)
- Choose installation location (default is fine).
- Click Install → wait for installation to finish.
- Launch Android Studio.
Mac (.dmg)
- Open the .dmg file.
- Drag Android Studio into the Applications folder.
- Open Android Studio from Launchpad.
Linux (.tar.gz)
- Extract the zip:
tar -xvf android-studio-*.tar.gz - Navigate to:
android-studio/bin/ - Run:
./studio.sh
✅ 3. Complete the Initial Setup Wizard
When Android Studio opens:
a. Choose UI theme
- Light / Dark (Darcula)
b. Install SDK Components
Android Studio will automatically install:
- Android SDK
- SDK Platform Tools
- Build Tools
- Android Emulator components
Click Next → Finish and wait for everything to download.
✅ 4. Set Up an Android Emulator (Optional but recommended)
- Go to Tools → Device Manager
- Click Create Device
- Choose a device 📱 (Pixel 6, Pixel XL, etc.)
- Select an Android version image (e.g., Android 14)
- Download & finish
- Start the emulator
✅ 5. Verify Your Installation
- Open Android Studio
- Select “New Project”
- Choose Empty Activity
- Click Run ▶
- The project should build
- Emulator or physical device should launch
If it builds successfully, your setup is complete.
🎯 OPTIONAL (Recommended)
Install USB Drivers (Windows Only)
If using a physical Android phone:
- Enable Developer Options → USB Debugging
- Install Google USB Driver:
Tools → SDK Manager → SDK Tools → Google USB Driver
✔️ You’re Done!
You now have:
- Latest Android Studio
- SDK + platform tools
- Emulator configured
- Development environment ready
0 Comments