Reputation: 5390
I'm trying to develop a mobile chrome app.
Here are the steps I followed:
cd
to hello-world and run cca create mobile-hello-world
cd
to mobile-hello-world
and run cca run androidHere is the error message I get:
ERROR : No emulator images (avds) found, if you would like to create an
avd follow the instructions provided here:
http://developer.android.com/tools/devices/index.html
Or run 'android create avd --name <name> --target <targetID>'
in on the command line.
Isn't cca supposed to take care of creating an emulator image for me?
I don't see any instructions in mobile chrome app documentation for this. What should I do?
Upvotes: 4
Views: 9894
Reputation: 11
Open Android SDK Manager and be sure that ARM EABI v7a System Image is installed.
Upvotes: 1
Reputation: 15607
Using the GUI to create a target image helps for point and clickers like me! Run android avd
to create as many images you need.
You'll need to have the SDK installed first, of course; the steps 2 & 3 from the following worked for me:
These instructions are for 2.8, but worked for me using Cordova 3.5
Run android
from the commandline to open the SDK manager, and update required components.
Upvotes: 4