react native

cordova使用笔记_创建一个cordova的项目

2017-11-21  本文已影响426人  Dawn_wdf

将cordova内嵌到本地工程:http://www.jianshu.com/p/6a16c260851e

一:安装cordova

   npm install -g cordova

报错:

   Please try running this command again as root/Administrator.

解决:

   sudo npm install -g cordova

更新cordova和项目:

   sudo npm update -g cordova
   sudo npm update -g cordova@3.1.0-0.2.0

查看当前运行的cordova的版本号

   cordova -v

查看最新版本的cardova

   npm info cordova version

更新目标平台

   cordova platform update ios --save

二:创建一个新的项目

   cordova create (在名为)hello(的文件夹下创建名为) HelloWorld(的工程)

默认情况下,会创建一个基于web的应用,其主页面为www/index.html。
进入项目目录:

   cd hello

三:添加需要的平台-ios

     cordova platform add ios
 添加完成之后,可以打开platforms里面对应的平台工程,运行正常。

四:为building创建环境,可略。使用xcode是一样的。

1:检查当前环境

 cordova requirements

显示如下:

Requirements check results for ios:
Apple macOS: installed darwin
Xcode: installed [object Object]
ios-deploy: not installed
ios-deploy was not found. Please download, build and install version 1.9.2 or greater from https://github.com/phonegap/ios-deploy into your path, or do 'npm install -g ios-deploy'
CocoaPods: installed [object Object]
Error: Some of requirements check failed

2:如果此时运行

cordova run ios 报错 No target specified for emulator.

3:根据提示安装ios-deploy

sudo npm install -g ios-deploy

4:此时警告:

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!! WARNING: You are on OS X 10.11 El Capitan or greater, you may need to add the
!!!! WARNING:   `--unsafe-perm=true` flag when running `npm install`
!!!! WARNING:   or else it will fail.
!!!! WARNING: link:
!!!! WARNING:   https://github.com/phonegap/ios-deploy#os-x-1011-el-capitan
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

使用sudo npm install -g ios-deploy --unsafe-perm=true 提示安装成功

/usr/local/bin/ios-deploy -> /usr/local/lib/node_modules/ios-deploy/build/Release/ios-deploy + ios-deploy@1.9.2 added 1 package in 12.755s

5:此时运行cordova run ios依然报错

No target specified for emulator所以只能制定一个target了。
查看所有支持的target列表:cordova emulate ios --list
然后制定一个模拟器运行:cordova emulate ios --target ='iPhone-X, 11.1'
报错:Device type "com.apple.CoreSimulator.SimDeviceType.=iPhone-X" could not be found.
此时,我已经想说脏话了,但是我提醒自己,淡定,我是淑女。

6:我直接用Xcode就可以了,我为什么要装逼。。。。。。

此时我想我刚才安装的ios-deploy也许不是运行模拟器的东东,查之。用来跑真机的。。。。。。
SO,安装ios-sim:npm install ios-sim -g

7:列出支持的模拟器列表:

ios-sim showdevicetypes

8:此时再次运行:

cordova run ios --target='iPhone-5, 9.3'

9:模拟器正常启动,完美。

10:跑真机

cordova run --device
如果只这样就运行成功了,只能说明在项目中,所有的关于真机运行的选项配置的都是正确的。否则会飘红~~~~所以,要么工程里面配置正确,要么在cordova run --device后面配置相关参数,同时也可以配置不同sheme下不同的参数。这个跟xcodebuild自动打包异曲同工,<font color=#DC143C>有待深入学习</font>。

cordova run --release --buildConfig='build.json'

五:index.html

如果此时想要看看内嵌页面的执行的效果,只要修改index.html文件就可以了。
如:http://www.jianshu.com/p/d24219c008b6
默认情况下使用的内嵌页面都是本地页面,可以修改为使用线上的URL。<font color=#DC143C>待学习</font>

六:添加插件

七:

Using merges to Customize Each Platform
<font color=#DC143C>待学习</font>

八:目录分析

myapp/
|-- config.xml
|-- hooks/
|-- merges/
| | |-- android/
| | |-- windows/
| | |-- ios/
|-- www/
|-- platforms/
| |-- android/
| |-- windows/
| |-- ios/
|-- plugins/
|--cordova-plugin-camera/

九:cordova命令行

https://cordova.apache.org/docs/en/latest/reference/cordova-cli/#cordova-platform-command

十:配置icon

<platform name="ios">
        <!-- iOS 8.0+ -->
        <!-- iPhone 6 Plus  -->
        <icon src="res/ios/icon-60@3x.png" width="180" height="180" />
        <!-- iOS 7.0+ -->
        <!-- iPhone / iPod Touch  -->
        <icon src="res/ios/icon-60.png" width="60" height="60" />
        <icon src="res/ios/icon-60@2x.png" width="120" height="120" />
        <!-- iPad -->
        <icon src="res/ios/icon-76.png" width="76" height="76" />
        <icon src="res/ios/icon-76@2x.png" width="152" height="152" />
        <!-- Spotlight Icon -->
        <icon src="res/ios/icon-40.png" width="40" height="40" />
        <icon src="res/ios/icon-40@2x.png" width="80" height="80" />
        <!-- iOS 6.1 -->
        <!-- iPhone / iPod Touch -->
        <icon src="res/ios/icon.png" width="57" height="57" />
        <icon src="res/ios/icon@2x.png" width="114" height="114" />
        <!-- iPad -->
        <icon src="res/ios/icon-72.png" width="72" height="72" />
        <icon src="res/ios/icon-72@2x.png" width="144" height="144" />
        <!-- iPad Pro -->
        <icon src="res/ios/icon-167.png" width="167" height="167" />
        <!-- iPhone Spotlight and Settings Icon -->
        <icon src="res/ios/icon-small.png" width="29" height="29" />
        <icon src="res/ios/icon-small@2x.png" width="58" height="58" />
        <!-- iPad Spotlight and Settings Icon -->
        <icon src="res/ios/icon-50.png" width="50" height="50" />
        <icon src="res/ios/icon-50@2x.png" width="100" height="100" />
        <!-- iPad Pro -->
        <icon src="res/ios/icon-83.5@2x.png" width="167" height="167" />
    </platform>
参考:http://cordova.apache.org/
上一篇下一篇

猜你喜欢

热点阅读