I\'m using the latest cordova android (5.1.0). The project is building and running fine without crosswalk, but after I add the crosswalk plugin using
cordov
try this it's working for me.
You must add the plugin before adding the android platform.
cordova -version ==> 5.1.1
Navigate to the project directory
cd cordova/
Remove the android platform
cordova platform rm android
Check the crosswalk plugin is not installed
cordova plugin ls
Add the crosswalk plugin with npm
cordova plugin add cordova-plugin-crosswalk-webview
Add the android platform
cordova platform add android
Build the android project
cordova build android
Run android project
cordova run android