In the Android SDK manager I can see 3 types of Intel Atom image. Can someone explain the main difference between "Intel Atom Image", "Google APIs Intel Atom image" and "Google Play Intel Atom Image"?
What is the difference between "Intel Atom Image", "Google APIs Intel Atom image" and "Google play Intel Atom Image"?
1.3k Views Asked by Gabboxl At
2
There are 2 best solutions below
0
Chetan Mehra
On
Just covering basic points:
Intel Atom Image :It is a version of the Android emulator that runs natively on x86 CPUs, like those in most development machines.You can find details of this question in this question.
The main difference between Google API system image and Google Play system image is With Google Play intel x86 atom system image , we will have play store and will be able to install apps on emulator see this link.
Related Questions in ANDROID-STUDIO
- how do i submit a pastebin or pastee from an android app and get the url back
- Getresource id Error
- Call special fragment in Navigation Drawer Activity from separate Activity
- Debug native code in Android Studio
- How to introduce in this AlertDialog a onBackButtonPressed method?
- Android Studio : All of a sudden cannot resolve symbol 'ActionBarActivity'
- Error connecting to Google Play Games
- Android Studio - Illegal character 8204 error
- Android Studio unable to run the project
- How do I know what is available in minSdkVersion in Android Studio?
- Android Studio update (version 1.2.1.1) - Cannot resolve symbol 'TintCheckBox'
- How to accept cookies when using a webservice - Android?
- How can I always show Android Studios Preview?
- Android Studio cannot recognize "setAdapter()" method
- Error inflating class Android support design
Related Questions in ANDROID-EMULATOR
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
- How to change original (unchangeable?) ICCID/SIM card serial from an AVD
- ADB and Genymotion error: "adb server is out of date. killing... cannot bind 'tcp:5037' ADB server didn't ACK"
- Give fake location to Genymotion emulator
- How do I configure my Android Emulator's Network Address Space?
- android emulator in android studio is too slow and can't use it fully
- Using VHD as SD card with android-x86 on Hyper-v
- Launch Android emulator on console (without graphic desktop )
- Update Android System WebView on SDK Emulator
- Block emulators in android application
- Google play services & google play games app on android emulator
- How to debug Cloudendpoints with GiTkit in the Android Emulator
- android emulator speed fast but cpu still 100%
- Install Android app on device through wifi - no usb or emulator
- Why is an IllegalBlockSizeException thrown when testing FingerprintManager in a simulator?
Related Questions in ANDROID-SDK-MANAGER
- Android support-v4:22.0.0 Not downloading to correct location?
- appcompat_v7 library missing in android sdk manager
- why res/values/styles.xml dose'nt exist?
- I stopped the installation of package abruptly in sdk manager in Linux. Thereafter the window does not open
- In Android Studio which SDK platform tools to install?
- How to completely delete/uninstall eclipse
- Android SDK manager does not open
- Intel HAXM Ver. Not compatible
- Is GUI for Android SDK manager gone?
- Why is the intel x86 emulator accelerator (HAXM installer) is showing not compatible with windows?
- Missing extras folder in sdk manager in android studios
- Where do I find the sdk tools tab
- How to install NDK with Android SDK Manager
- How can I change where the Android SDK manager installs things?
- how much disk space do i need for Android SDK
Related Questions in INTEL-ATOM
- How to use Matlab embedded coder under Windows to compile for LINUX?
- Running pure x86_64 Android NDK library on Intel Atoms
- What to do with gapps-jb-20130813-signed.zip
- Screen capture is not working with ddms in Intel® Atom™ x86 Image for Android
- Atom/BayTrail SoC SSP/SPI programming
- What is the difference between "Intel Atom Image", "Google APIs Intel Atom image" and "Google play Intel Atom Image"?
- SIMD performance degrade on Android Framework
- Intel EG20T GPIO on Windows 7 Embedded
- Video encoder with low CPU usage on Atom 230
- What is the difference between the Intel x86 Atom and Atom_64 system images?
- What's the relationship between the Intel Atom Developer Program and the MeeGo operating system?
- Possible to use Python with Intel's Atom Developer SDK (C/C++)?
- Can't create AVD with Google APIS 19 with CPU Intel even though i have downloaded the image
- Running VTune Amplifier 2014 for Android Systems on Windows using Eclipse
- rdtsc's return value is _always_ mod 10 == 0 on Atom N450
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

A "Google APIs" image includes the Play services that many apps rely on but does not include the Play Store app
A "Google Play" image includes both the Play Store app and the Play services
A plain "Intel Atom Image" has neither the Play Store nor the Play services. It is an unaltered build from the Android Open Source Project with no additional apps added. It is good for testing apps that you intend to have no Google dependencies and, as it is a "rooted" image, for testing apps that require root access.
For Google's description, see Create and manage virtual devices | Android Developers