@2890594972
2017-10-29T11:16:58.000000Z
字数 1162
阅读 996
cordova
大象
npm install -g cordova
cordova create hello com.example.hello HelloWorld
cordova create demo com.dxample.demo demo
注意:
1.cordova目前打包的是SPA(单页面应用程序)
2.www/index.html 入口文件
3.config.xml配置文件
cd hello
cordova platform add ios
cordova platform add android
cordova platform ls
$ cordova requirements
Requirements check results for android:
Java JDK: installed .
Android SDK: installed
Android target: installed android-19,android-21,android-22,android-23,Google Inc.:Google APIs:19,Google Inc.:Google APIs (x86 System Image):19,Google Inc.:Google APIs:23
Gradle: installed
Requirements check results for ios:
Apple OS X: not installed
Cordova tooling for iOS requires Apple OS X
Error: Some of requirements check failed
cordova build //build android和ios
cordova build android //build android
cordova build ios //build ios
cordova emulate android
cordova plugin add cordova-plugin-camera //添加照相机插件
cordova plugin search camera //搜索插件
cordova plugin ls //查看安装的插件
解决方法1:尝试失败
在android studio下载
[Android SDK Platform 26]
解决方法2:通过SDK Manager安装26
测试成功
从:w3cschool去看
http://blog.csdn.net/yushuyou/article/details/50751506