Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is intel x86 atom system image in android sdk manager?

Tags:

android

I am new to Android development. I am setting up development environment. So my question is, what is Intel x86 atom system image in Android SDK manager? Should i install it or not? The option is present in API level 15 & 16 but not in 17.

Thanks.

like image 278
Rutu Raj Avatar asked Dec 28 '12 16:12

Rutu Raj


People also ask

What is x86 system image in Android?

A system image is used to create different Android Virtual Devices (AVDs) and emulate the different Android devices in common use. As developer workstations are usually Intel x86 based, the ARM instruction set had to be emulated as well.

Which system image is best for Android studio?

x86 images run the fastest in the emulator. If you see Download next to the system image, you need to click it to download the system image.


1 Answers

So my question is, what is intel x86 atom system image in android sdk manager?

It is a version of the Android emulator that runs natively on x86 CPUs, like those in most development machines.

Contrast that with the ARM system image, which contains ARM (not x86) CPU instructions, and therefore must be translated when run.

Should i install it or not?

The x86 emulator images, where available, tend to run faster. You will have to do some work on your development machine to take advantage of them, as is outlined in the documentation.

the option is present in api level 15 & 16 but not in 17.

AFAIK Google relies upon Intel to create these images, and Intel has only done so on a few API levels.

like image 200
CommonsWare Avatar answered Sep 17 '22 21:09

CommonsWare