Cordova 6.4.0: android platform install Whitelist error

懵懂的女人 提交于 2019-12-25 07:49:52

问题


I'm setting up a first cordova projecct.

After installing globally Cordova and creting a first app repository am trying to set up the android platform within this command:

cordova platform add android --save

But this action ends up by generation this error message:

BUILD FAILED

Total time: 0.989 secs Failed to install 'cordova-plugin-whitelist':Error: /home/firas/Bureau/Cordova/HelloWorld/HelloWorld/platforms/android/gradlew: Command failed with exit code 1 at ChildProcess.whenDone (/home/firas/Bureau/Cordova/HelloWorld/HelloWorld/platforms/android/cordova/node_modules/cordova-common/src/superspawn.js:169:23) at emitTwo (events.js:87:13) at ChildProcess.emit (events.js:172:7) at maybeClose (internal/child_process.js:821:16) at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5) Error: /home/firas/Bureau/Cordova/HelloWorld/HelloWorld/platforms/android/gradlew: Command failed with exit code 1

I have tried to remove and re-add the adroid platform , but the problem persists , also I have tried to install the whitelist plugin (cordova plugin add cordova-plugin-whitelist@1.0.0 )

but also I faced the same problem , and finish by not being able to build or run my first HelloWord app


回答1:


  • Update Cordova version
  • Set Local Path
  • Cordova Tutorial



回答2:


This issue appears especially with Cordova 6.4.0 (latest until 31 December 2016) .

To solve this problem, simply uninstall Cordova and re-install it for the version 6.0.0 which affords more stability with the whitelist component.

Steps:

  1. npm uninstall -g cordova
  2. npm install -g cordova@6.0.0


来源:https://stackoverflow.com/questions/41411067/cordova-6-4-0-android-platform-install-whitelist-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!