"No system images installed for this target" even though Image is installed

AndroidEclipseAvd

Android Problem Overview


SDK Manager

So I'm trying to create an AVD Simulator, and I keep getting the "No system images installed for this target" error when trying to create a 4.2.2 system even though the image is installed (See picture of SDK Manager).

My system is x64, does that make a difference?

Eclipse Error

Android Solutions


Solution 1 - Android

After SDK Update I had the same problems with API Level 19 and in my case restarting eclipse didn't solve it.

For some reason, in the sdk/system-images/android-19 directory, sub-folders with system images (armeabi-v7a and x86) were placed within "default" directory. I just moved them into android-19 directory (if eclipse is running at the same time, you will have to restart it).

Solution 2 - Android

You just need to restart the tools. I have seen this bug before. The appropriate installed images will show up after the restart.

You can also try to refresh within the 'Packages' menu, but the easiest thing, is to restart the tools.

Solution 3 - Android

Goto sdk\system-images and open the folder of the current API you are using (eg.android-19 folder in your case). Now you'll find a folder named 'default', open it and you'll see the folder named 'armeabi-v7a' or which ever system image you've installed. Now move the folder 'armeabi-v7a' to the directory sdk\system-images...i.e simply out of the 'default' folder.

That's it. I had the same problem and this method worked for me. :D

Solution 4 - Android

I restart eclipse.it worked out for me,issue is resolved.

Solution 5 - Android

I just had this same issue. My problem was solved by killing eclipse (Command + Q) because I'm a Mac user. So, if you're under other operative system be sure to kill the Eclipse's process and relaunch it.

Solution 6 - Android

Lots of potentially useful answers here, but none of them were worked for me.

On my Mac, I have both Android Studio and Visual Studio installed. One would hope that they would automatically look for an Android SDK in the same place, but no, not necessarily.

In Android Studio, go to Tools -> Android -> SDK Manager. In the window that pops up, make a note of the Android SDK Location. It should be something like > /Users/[user]/Library/Android/sdk

Next, in Visual Studio, go to Tools -> SDK Manager. In the window that pops up, the path that should be selected on the left is Projects -> SDK Location -> Android. On the right, click the Locations tab. For me, the Android SDK Location path was set to something like >/Users/[user]/Library/Developer/Xamarin/android-sdk-macosx

I changed this to the path that Android Studio was using, and that fixed the problem for me.

Solution 7 - Android

Very simple. I restarted Eclipse, reloaded my project and when creating a new emulator, the problem is gone

Solution 8 - Android

Found this thread when I did a search on Google for the same error.

So I just wanted to add that if anyone comes across this thread but you are using Android Studio. You only have to restart the Android Studio. I did and now I can see what I installed.

enter image description here

Solution 9 - Android

Make sure you have rights to all the files in the android-sdk-linux directory using:

sudo chown $USER -R ./android-sdk-linux

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
QuestionHarel LichtensteinView Question on Stackoverflow
Solution 1 - AndroidmrakView Answer on Stackoverflow
Solution 2 - AndroidBoogerView Answer on Stackoverflow
Solution 3 - AndroidSatSinView Answer on Stackoverflow
Solution 4 - AndroidTaimurView Answer on Stackoverflow
Solution 5 - AndroidCarlosView Answer on Stackoverflow
Solution 6 - AndroiddstrubeView Answer on Stackoverflow
Solution 7 - AndroidVincent ThackerView Answer on Stackoverflow
Solution 8 - AndroidJGallardoView Answer on Stackoverflow
Solution 9 - AndroidrzymekView Answer on Stackoverflow