Reputation: 2088
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
Upvotes: 167
Views: 96301
Reputation: 3835
Show package details
in the bottom right.Ok
.Upvotes: 358
Reputation: 752
CLI solution for Linux/Mac users:
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
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!
Upvotes: 1
Reputation: 4743
For Android Studio Giraffe, using the new Android Studio ui
Upvotes: 8
Reputation: 6156
This is hidden now. to not delete your SDK along with the image. you need to
show package details
,Upvotes: 32
Reputation: 31
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.
Upvotes: 3
Reputation: 667
For Mac users is the same path Users > YourUserName > Library > Android > sdk > system-images
Upvotes: 2
Reputation: 7168
For Mac users:
rm -r ~/Library/Android/sdk/system-images/android-XX
Upvotes: 24
Reputation: 690
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.
Upvotes: 74
Reputation: 2866
The Process is relatively simple and is as follows:
Upvotes: 3