How do I remove an image-system for avd file in Android Studio?

AndroidAndroid StudioAvdEmulation

Android Problem Overview


enter image description here

enter image description here

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

Android Solutions


Solution 1 - Android

  • 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.

Solution 2 - Android

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.

Solution 3 - Android

For Mac users:

rm -r ~/Library/Android/sdk/system-images/android-XX

Solution 4 - Android

This is hidden now. to not delete your SDK along with the image. you need to

  1. Tools->SDK manager
  2. Select show package details,
  3. then select the relevant system image only, leaving in your sdk

enter image description here

Solution 5 - Android

The Process is relatively simple and is as follows:

  1. Select the image from Android SDK Manager
  2. Remove the unnecessary system image by selecting the image and then clicking Delete package.
  3. Install your image of choice.

Solution 6 - Android

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.

enter image description here

Solution 7 - Android

For Mac users is the same path Users > YourUserName > Library > Android > sdk > system-images

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionYou.BrightonView Question on Stackoverflow
Solution 1 - AndroidHenley nView Answer on Stackoverflow
Solution 2 - AndroidNilesh SanyalView Answer on Stackoverflow
Solution 3 - AndroidKilian BatznerView Answer on Stackoverflow
Solution 4 - Androidir2pidView Answer on Stackoverflow
Solution 5 - AndroidCijoView Answer on Stackoverflow
Solution 6 - AndroidTsehView Answer on Stackoverflow
Solution 7 - AndroidStefanView Answer on Stackoverflow