One user of my app is facing certain issues specifically on API Level 15 (4.0.4)
, and I would like to reproduce the issue on my end. I don't have a 4.0.4
device, and I would like to create and emulator for this purpose. I'm running Android Studio 2.0-beta6
, and the GUI
AVD Manager
does not show any API-15
emulator images at all.
So, I have then used the standalone SDK manager
to install an API-15
level x86 system image, and then created an AVD
from command line as follows.
$ android create avd -n Api-15-Gnex -t 1
Id 1
is the id of the API-15
target on my machine. But, this system image obviously misses the Google APIs
in it, and my app depends on Google Play services
, and I need them specifically to reproduce the issue.
How can I create API-15
emulator with Google APIs
? Preferably from command line, but not necessarily.