Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SDK Manager is missing older Android System images for emulator

Tags:

I've just did fresh installs of the ADT bundle (20130522) and the Android Studio. (because my eclipse install got screwed up again, but that's another story.)

In either version, when I launch the SDK Manager, I don't have any system images for 2.2, only an x86 image for 2.3.3, and no images for 3.0, 3.1, and 3.2.

I couldn't find any official word as to why they've been removed. Is there now a better way to test on those platforms rather than by using the emulator images?

like image 589
Kevin Avatar asked Jun 25 '13 22:06

Kevin


People also ask

How do I install missing components in SDK manager?

Quick fix: Go to the Tools –> SDK manager –> SDK tools. Deselect Hide obsolete packages option on the right bottom and further install Android SDK Tools(obsolete). A new folder named Tools is now generated in the SDK directory.

How do I fix Avdmanager is missing from the Android SDK?

SDK Build tools are installed when you create a new project. If it fails then you may have to install it again. You look at the build tab at the bottom of the screen, it will display the error message and option to install the Build tools. Install it and you should be able to see the AVD Manager.


1 Answers

Check the "Obsolete" checkbox, towards the bottom of your SDK Manager window, and you should see them.

More specifically, up until Android 4.0 (or thereabouts), the ARM emulator image was not broken out into a separate download, and so you get that from the base "SDK Platform" download.

Why would people expect the ARM image to be part of the SDK platform for <4.0, when it is broken out separately for 4.0+

Well, for those of us graybeards who have been developing for Android for a while, it's second nature... :-)

More seriously, I suspect they did not want to attempt to repackage the older releases. Bear in mind that the only available platform for Android was ARM up until about 2.3, and so having a separate ARM image download would have seemed odd back in the beginning.

like image 138
CommonsWare Avatar answered Sep 19 '22 20:09

CommonsWare