博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cordova构建项目命令小结
阅读量:6590 次
发布时间:2019-06-24

本文共 3094 字,大约阅读时间需要 10 分钟。

hot3.png

cordova help

cordova info

npm update -g cordova

npm install -g cordova@3.1.0-0.2.0

npm info cordova

cordova platform update android

    $ cordova build                   # build all platforms that were added

    $ cordova build android           # build debug for only Android

    $ cordova build android --debug   # build debug for only Android

    $ cordova build android --release # build release for only Android

     $ cordova emulate android       #to deploy the app on a default iOS emulator

    $ cordova run android --device  #to deploy the app on a connected device

cordova plugin add 

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-networkinformation.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion.git

cordova plugin add https://git-wip-us.apache.org/repos/asf?p=cordova-plugin-device-orientation.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-media.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git

cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git

cordova plugin add cordova-plugin-network-information

cordova plugin add cordova-plugin-battery-status

cordova plugin add cordova-plugin-file-transfer

cordova plugin add cordova-plugin-console cordova-plugin-device

cordova plugin add cordova-plugin-console@latest

cordova plugin add cordova-plugin-console@0.2.1

cordova plugin add https://github.com/apache/cordova-plugin-console.git#r0.2.0

cordova plugin add https://github.com/someone/aplugin.git#:/my/sub/dir

cordova plugin add https://github.com/someone/aplugin.git#r0.0.1:/my/sub/dir

cordova plugin add ../my_plugin_dir

cordova plugin remove org.apache.cordova.core.file

cordova prepare platform_name

cordova compile android

cordova build android

cordova emulate android

cordova serve android 8080

cordova plugin search bar code

cordova create lunch_menu

cd lunch_menu

cordova platform add blackberry

cordova prepare blackberry

cordova create MAP_1.0 com.zhxjz.map Map

cordova platform add android

cordova platform ls

cordova platform remove platform_name

<script type="text/javascript" charset="utf-8" src="cordova.js"></script>

转载于:https://my.oschina.net/u/555061/blog/509057

你可能感兴趣的文章
linux统计多个文件大小总和
查看>>
java基础-Eclipse开发工具介绍
查看>>
JS常见的字符串操作
查看>>
洛谷P1069 细胞分裂 数学
查看>>
JAVA中的编码分析
查看>>
查看源代码Source not found及在eclipse中配置jdk的src.zip源代码
查看>>
document.all用法
查看>>
uniGUI试用笔记(二)
查看>>
HOG特征-理解篇
查看>>
Microsoft.AlphaImageLoader滤镜解说
查看>>
extjs_02_grid(显示本地数据,显示跨域数据)
查看>>
超过响应缓冲区限制
查看>>
ubuntu 下安装 matplotlib
查看>>
webservice的几个简单概念
查看>>
underscore 1.7.0 api
查看>>
C# CheckedListBox控件的使用方法
查看>>
spring Transaction Management --官方
查看>>
iOS开发-清理缓存功能的实现
查看>>
IS_ERR、PTR_ERR、ERR_PTR
查看>>
html5 canvas 奇怪的形状垂直渐变
查看>>