The problem is that Genymotion uses x86 instead of the arm architecture, and doesn't seem to come with libhoudini (arm to x86 translator) installed.
You have two options:
install the native arm translation, which I have never had much luck with, will occasionally crash my devices with no warning, and is the
OR
Build a native x86 binary of your app. Assuming you are using the most recent Cordova 4.0, this is default with gradle, and you will be able to find an x86 build already done along side the arm build. According to the Cordova release notes, you can manually trigger gradle if it isn't already enabled with:
cordova build android -- --gradle
Good luck
Payam source
share