Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

cordova.txt 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Synopsis
  2. cordova-cli command [options]
  3. Global Commands
  4. create ............................. Create a project
  5. help ............................... Get help for a command
  6. telemetry .......................... Turn telemetry collection on or off
  7. config ............................. Set, get, delete, edit, and list global cordova options
  8. Project Commands
  9. info ............................... Generate project information
  10. requirements ....................... Checks and print out all the requirements
  11. for platforms specified
  12. platform ........................... Manage project platforms
  13. plugin ............................. Manage project plugins
  14. prepare ............................ Copy files into platform(s) for building
  15. compile ............................ Build platform(s)
  16. clean .............................. Cleanup project from build artifacts
  17. run ................................ Run project
  18. (including prepare && compile)
  19. serve .............................. Run project with a local webserver
  20. (including prepare)
  21. Learn more about command options using 'cordova-cli help <command>'
  22. Aliases
  23. build -> cordova-cli prepare && cordova-cli compile
  24. emulate -> cordova-cli run --emulator
  25. Options
  26. -v, --version ...................... prints out this utility's version
  27. -d, --verbose ...................... debug mode produces verbose log output for all activity,
  28. --no-update-notifier ............... disables check for CLI updates
  29. --nohooks .......................... suppress executing hooks
  30. (taking RegExp hook patterns as parameters)
  31. Examples
  32. cordova-cli create myApp org.apache.cordova.myApp myApp
  33. cordova-cli plugin add cordova-plugin-camera
  34. cordova-cli platform add android
  35. cordova-cli plugin add cordova-plugin-camera --nosave
  36. cordova-cli platform add android --nosave
  37. cordova-cli requirements android
  38. cordova-cli build android --verbose
  39. cordova-cli run android
  40. cordova-cli build android --release -- --keystore="..\android.keystore" --storePassword=android --alias=mykey
  41. cordova-cli config ls