我在哪里可以获得In cordova 5.0.0的示例项目

时间:2016-04-05 14:09:18

标签: android cordova

我是新来的科尔多瓦,所以我查看官方文档,我将所有指令发送到他们身上,但卡在一个地方 我正在尝试从cmd创建演示项目

sudo npm install -g cordova

cordova创建hello com.example.hello HelloWorld

cd hello。

cordova平台添加android。

之后没有发生任何事情只是显示此消息 正在执行" before_plaform_add"挂钩所有插件。 没有版本spplied.Retreving版本来自config.xml ..

所以我遇到麻烦,启动cordova是他们找到cordova5.0.0.jar,cordova.js和config.xml的任何方法。

1 个答案:

答案 0 :(得分:0)

您是否安装了所有其他依赖项?和

一样
npm install -g cordova

您还需要为正在构建的每个平台安装平台SDK,您可能还需要安装Java,具体取决于您是否正在构建Android以及您的计算机上已存在的内容。你需要Xcode(以及使用Mac)来为iOS构建。

关于安装过程的官方Cordova文档是here。我强烈建议你不要使用Cordova 5,除非你必须使用最新的Cordova 6.1.1,你可以使用它:

npm install -g cordova@latest

然后验证它:

cordova --version

在撰写本文时应返回6.1.1。

然后尝试:

cordova create hello com.example.hello HelloWorld
cd hello
cordova platform add ios android
cordova requirements

最后一个命令“cordova要求”应该告诉你是否安装了Cordova所需的一切。例如,在我的系统上:

cordova requirements

Requirements check results for android:
Java JDK: installed .
Android SDK: installed 
Android target: installed android-17,android-18,android-19,android-20,android-21,android-22,android-23,Google Inc.:Google APIs:17,Google Inc.:Google APIs:18,Google Inc.:Glass Development Kit Preview:19,Google Inc.:Google APIs:19,Google Inc.:Google APIs (x86 System Image):19,Google Inc.:Google APIs:21,Google Inc.:Google APIs:22,Google Inc.:Google APIs:23
Gradle: installed 

Requirements check results for ios:
Apple OS X: installed darwin
Xcode: installed 7.2
ios-deploy: not installed 
ios-deploy was not found. Please download, build and install version 1.8.3 or greater from https://github.com/phonegap/ios-deploy into your path, or do 'npm install -g ios-deploy'