I\'m building an app for Android using Cordova. The android emulator was working fine but I wasn\'t using it because I installed the Ripple emulator. I continued on building my
I finally found a work around. I don't know why Cordova 3.2 isn't able to start the emulator automatically on my system, because it does work on my laptop. Downgrading to 3.0 seems to fix the problem:
npm uninstall cordova
npm install -g cordova@3.0.0
@Tech Pro
Cordova 3.2 need Android KITKAT version sdk. So, the problem lies in your Android SDK version. There are two solutions of this problem.
Solution:1:
Update your Android SDK to latest version or downgrade to Cordova version 3.0 as suggested by @Evers
Solution:2: If you don't want to either upgrade the Android SDK or downgrade Cordova version then follow the steps here.
@Tech Pro This error may be caused by the undocumented fact that the virtual machine needs to be launched + unlocked before the emulate command is sent.
Make sure that a virtual machine has been created by Android virtual device manager by the following command:
android avd
Make sure the versions are correct with the compatibility for your app :) I'm sorry I got the late reply!
I Have recieved the same error myself, there may be 3 issues :
the emulator uses the apk file generated in the platforms/android/bin folder. sometimes this is missing so make sure to:
Which will create the missing apk file if missing.
The second issue may have come with adding it to the emulator, which must be run prior:
How to install an apk on the emulator in Android Studio?
There is also the option to delete and create the android virtual machine using:
AVD at http://developer.android.com/tools/devices/index.html
hope this helps, let me know. There is very little documentation about this error.
Just re run after starting emulator manually.
Create Emulator
android
in cmd and hit enter, a GUI will come.Start Emulator
emulator.exe -avd *avdname*
in cmd (wait for few minutes for full start up)I was playing with the Cordova workshop tutorial and ran into a similar issue with the android emulator not starting. I checked the above answer but it still didn't work for me. So here is what I did (I'm using windows 7):
I started the AVD (Android Virtual device)
manager from:
start->programs->Android SDK Tools->AVD
Manager.
I noticed the single entry listed for Nexus_5_API_21_X86
had "?" next to Platform and other columns. This made me wonder why.
I click "Edit
" and specify the target platform, and other missing fields.
Click the "Start" to start the AVD
. After a min, you should also see the android emulator screen display.
rerun cordova (c:\Cordova\workshop>cordova emulate android)
Voila! The command window then displays the compilation progress and finally, you should see the messages below. After another min, you should be able to find your app on the android emulator.
BUILD SUCCESSFUL
Total time: 1 mins 10.307 secs
Built the following apk(s):
C:\Cordova\workshop\platforms\android\build\outputs\apk\android-debug.apk
Installing app on emulator...
Using apk: C:\Cordova\workshop\platforms\android\build\outputs\apk\android-debug.apk
Launching application...
LAUNCH SUCCESS
Hope this helps!