I want to remove the api 16 of jelly bean but there is not remove button how can I do that. image file is very big size file so I need don't many system image file
After selecting show hidden files option from windows explorer, go to the location where Android SDK is installed. Then open system-images folder. You will see a folder named as the api level same as jelly bean. Just remove that folder.
Go to Preferences / Appearance & Behaviour / System Settings / Android SDK
Tick
Show package details
in the bottom right.Untick the version(s) of Android you want to uninstall and click
Ok
.
File
-> Settings
-> Appearance & Behavior
-> System Settings
-> Android SDK
–
Claytonclaytonia After selecting show hidden files option from windows explorer, go to the location where Android SDK is installed. Then open system-images folder. You will see a folder named as the api level same as jelly bean. Just remove that folder.
This is hidden now. to not delete your SDK along with the image. you need to
- Tools->SDK manager
- Select
show package details
, - then select the relevant system image only, leaving in your sdk
For Mac users:
rm -r ~/Library/Android/sdk/system-images/android-XX
open Library/Android/sdk/system-images/
then delete desired image. –
Avion The Process is relatively simple and is as follows:
- Select the image from Android SDK Manager
- Remove the unnecessary system image by selecting the image and then clicking Delete package.
- Install your image of choice.
File -> Settings-> SDK
1. Check 'Show Package Details'
2. Uncheck the System Image you want to Delete
3. Click 'OK' and will Delete ARM Images.
For Android Studio Giraffe, using the new Android Studio ui
- Go to Preferences -> Languages & Frameworks -> Android SDK
- Tick Show package details in the bottom right.
- Untick the version(s) of Android you want to uninstall and click Ok.
For Mac users is the same path Users > YourUserName > Library > Android > sdk > system-images
CLI solution for Linux/Mac users:
- List all installed packages:
sdkmanager --list
Installed packages:
Path | Version | Description | Location
------- | ------- | ------- | -------
cmdline-tools;latest | 11.0.0 | PLACEHOLDER | cmdline-tools/latest
emulator | 29.3.4 | PLACEHOLDER | emulator
patcher;v4 | 1 | SDK Patch Applier v4 | patcher/v4
platform-tools | 34.0.4 | PLACEHOLDER | platform-tools
platforms;android-27 | 3 | Android SDK Platform 27, rev 3 | platforms/android-27
system-images;android-27;default;x86_64 | 1 | Intel x86_64 Atom System Image | system-images/android-27/default/x86_64
- Remove the desired packages, e.g.:
sudo sdkmanager --uninstall "system-images;android-27;default;x86_64
As a side note, there may be more than a single sdkmanager
in the system, e.g., under:
/usr/bin/sdkmanager
, and/opt/android-sdk/cmdline-tools/latest/bin/sdkmanager
Depending on which sdkmanager
you use, you may see different packages!
© 2022 - 2025 — McMap. All rights reserved.