You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+130Lines changed: 130 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,136 @@ Kendalikan agent melalui Telegram Bot:
80
80
81
81
---
82
82
83
+
## 🔧 Android SDK Verification & Setup
84
+
85
+
### 1. Download Required Tools
86
+
Visit the [Android Command Line Tools download page](https://developer.android.com/studio#command-tools) and download the "Command line tools only" package for your operating system:
87
+
***Windows**: `commandlinetools-win-*.zip`
88
+
***macOS**: `commandlinetools-mac-*.zip`
89
+
***Linux**: `commandlinetools-linux-*.zip`
90
+
91
+
### 2. Create Directory Structure and Extract Files
92
+
The Android SDK tools require a specific directory structure. Follow the steps below for your operating system.
93
+
94
+
#### Windows:
95
+
1. Create the directory structure:
96
+
```
97
+
C:\Android\
98
+
└── cmdline-tools\
99
+
└── latest\
100
+
```
101
+
2. Extract the downloaded zip file. The archive contains a `cmdline-tools` folder with `bin`, `lib`, and other files.
102
+
3. Move all contents from the extracted `cmdline-tools` folder into `C:\Android\cmdline-tools\latest\`
103
+
104
+
Your final directory structure should look like this:
105
+
```
106
+
C:\Android\
107
+
└── cmdline-tools\
108
+
└── latest\
109
+
├── bin\
110
+
├── lib\
111
+
└── [other files]
112
+
```
113
+
114
+
#### macOS / Linux:
115
+
1. Create the directory structure:
116
+
```bash
117
+
mkdir -p ~/Android/cmdline-tools
118
+
```
119
+
2. Extract the downloaded zip file:
120
+
```bash
121
+
cd ~/Downloads
122
+
unzip commandlinetools-*.zip
123
+
```
124
+
3. Move the extracted folder to the correct location:
125
+
```bash
126
+
mv cmdline-tools ~/Android/cmdline-tools/latest
127
+
```
128
+
Your final directory structure should look like this:
129
+
```
130
+
~/Android/
131
+
└── cmdline-tools/
132
+
└── latest/
133
+
├── bin/
134
+
├── lib/
135
+
└── [other files]
136
+
```
137
+
> **Important**: The `latest` folder must be created manually (Windows) or by renaming the extracted folder (macOS/Linux). The Android SDK tools require this exact directory structure to function properly.
138
+
139
+
### 3. Configure Environment Variables
140
+
Set up environment variables so your system can locate the Android SDK tools.
141
+
142
+
#### Windows (PowerShell - permanent):
143
+
Run these commands in PowerShell to set environment variables permanently:
* This command installs Android 15 (API level 35), which is the current stable version required by Google Play as of 2025.
208
+
* To see all available versions, run `sdkmanager --list` and replace `android-35` with your preferred API level if needed.
209
+
* Use `arm64-v8a` for Apple Silicon Macs and `x86_64` for Intel-based Macs, Windows, and most Linux systems. The architecture must match your system's processor.
210
+
211
+
---
212
+
83
213
<palign="center">
84
214
<i>Developed with ❤️ and a lot of vibes. Project ID: <code>Zero-Sentinel</code></i>
0 commit comments