Reputation: 15039
I am using android-API 15 for development of an app, The android image I am using is Intel's x86 atom.
I can create AVD image for the android emulator using standard API-15 but not with Google API, because avd manager does not show any any options for x86 atom image. It does for arm only but the Arm flavour of the Image runs very slow on my Intel machine,
Any ideas how can I set up the x86 atom image with Google API -15 ? rather than plain APi-15
Thank you
Upvotes: 3
Views: 5851
Reputation: 2201
It is now possible to download the image directly using SDK manager. It is available for API >= 19
Upvotes: 1
Reputation: 975
The reply by @Ahmed is good, but there is a way to do this with less steps and without using mkyaffs2 and pulling the image (which takes forever). All methods I have seen, like this one, rely on creating this system image from within the guest Android system, which is very slow, and hard to automate. My method tricks QEMU to persist the changes to /system into the disk image, instead of throwing them away.
You can see the full method here: http://confcompass-tech.blogspot.nl/2013/07/google-apis-in-x86-android-emulator.html
Upvotes: 0
Reputation: 1760
the answer given by Ahmed is technically correct, but I got a better overview of what I was doing, here: http://codebutler.com/2012/10/10/configuring-a-usable-android-emulator/
Upvotes: 1
Reputation: 15039
I figured it out,
Need to follow these steps,
Upvotes: 2