English translation
Setting Up the Android SDK Environment
AI Article Decision Snapshot
Turn the lesson into workflow, model, budget, and security checks before choosing tools.
Use this quick snapshot before leaving the article. It keeps the next search tied to practical AI software, model/API, cost, privacy, and implementation questions.
Workflow fit
Identify the real job behind the article: coding, research, document review, support, analytics, content, or internal automation.
Model or tool decision
Decide whether the next step is a software shortlist, an AI tool comparison, an API platform choice, or a model benchmark.
Budget and usage signal
Estimate seats, API calls, prompt volume, retries, review time, and fallback work before assuming the workflow is cheap.
Security and privacy review
Check whether source code, customer data, private documents, prompts, logs, or embeddings will enter the AI workflow.
In the previous section, we completed the installation of Android Studio. Now, we’ll configure the Android SDK to prepare for app development. The Android SDK (Software Development Kit) is a collection of essential tools required to develop Android applications—it includes everything needed to compile, debug, and run Android apps. Below are the detailed steps to configure the Android SDK.
Verify the SDK Installation Location
After installing Android Studio, the SDK is typically installed at a default location—but it’s important to confirm this path. Launch Android Studio, then from the main interface, go to File → Settings (on macOS: Android Studio → Preferences). In the left-hand navigation panel, select Appearance & Behavior → System Settings → Android SDK.
On this page, you’ll see the SDK installation path, which is usually:
- Windows:
C:\Users\<Your-Username>\AppData\Local\Android\Sdk - macOS/Linux:
/Users/<Your-Username>/Library/Android/sdkor/home/<Your-Username>/Android/Sdk
Ensure this path is valid and accessible—and make note of it, as you’ll need it later.
Download and Install SDK Components
On the Android SDK page, you’ll find several tabs—such as SDK Platforms and SDK Tools. Use these to select and install the Android versions and supporting tools you need.
Select SDK Platforms
Click the SDK Platforms tab to view recently released Android versions (e.g., Android 12, Android 13, etc.). Check the box next to the Android version(s) you intend to target for development. We strongly recommend selecting the latest stable release.
Select SDK Tools
Switch to the SDK Tools tab and verify whether the required tools are already installed. Commonly used tools include:
- Android SDK Build-Tools
- Android Emulator
- Android SDK Platform-Tools
- Android SDK Tools
- Google Play Services
- Google Repository
Ensure all necessary tools are selected, then click OK to download and install them.
Example: Installing the Android 12 SDK
Suppose you want to install the Android 12 SDK. First, check the Android 12 option under the SDK Platforms tab. Then, switch to the SDK Tools tab and ensure related tools (e.g., Build-Tools, Platform-Tools, Emulator) are also selected. Click OK to begin downloading and installing.
Configure Environment Variables (Optional)
On Windows, configuring the ANDROID_HOME environment variable makes it convenient to access Android SDK tools directly from the command line. Follow these steps:
- Right-click
This PC(orComputer) →Properties→Advanced system settings. - Click
Environment Variables. - Under System variables, click
New, enterANDROID_HOMEas the variable name, and set its value to your SDK installation path. - In the
Pathsystem variable, add the following entries:%ANDROID_HOME%\platform-tools%ANDROID_HOME%\tools
Click OK to save all changes.
Verify the Installation
To confirm that the SDK has been configured correctly, open a terminal (Command Prompt on Windows, or Terminal on macOS/Linux) and run:
adb version
If the installation succeeded, you’ll see output similar to:
Android Debug Bridge version 1.0.41
Version 30.0.3-6686687
This confirms that the Android SDK—and specifically the ADB tool—has been successfully installed.
Summary
At this point, you’ve successfully configured the Android SDK and are now ready to begin Android app development. In the next chapter, we’ll create our first Android project and continue this exciting journey. Before moving forward, please ensure your SDK installation is complete and that basic verification (e.g., adb version) succeeds—this will help avoid roadblocks during development.
Apply This Lesson
Turn this article into AI software, model, API, and security decisions.
English Article FAQ
Use this article as evidence before choosing AI tools
How should I use this AI Tutorials article?
Use it as the implementation or learning layer, then connect the idea to AI software buyer guides, tool comparisons, benchmarks, API choices, and security checks before making a production decision.
Is this English article different from the Chinese original?
The English edition is localized for global AI readers while preserving the original diagrams, screenshots, prompts, code examples, and source context from the Chinese article.
What should I read after Setting Up the Android SDK Environment?
Continue with AI Software Buyer Guides, AI Tools Workbench, Best AI Coding Agents, AI Model Benchmarks, OpenAI vs Anthropic API, or LLM Security Tools depending on the decision you need to make.
Can this article alone choose an AI product or model?
No. Treat the article as evidence and context, then validate fit with pricing, privacy requirements, integration effort, benchmark results, workflow tests, and fallback planning.
Continue