2

我正在尝试通过 CLI 构建一个新的 Phonegap 3.0 应用程序

当我执行

phonegap run ios --V

我得到以下输出

[phonegap] detecting iOS SDK environment...
[phonegap] Checking iOS requirements...
[phonegap] Running "xcodebuild -version" (output to follow)
[phonegap] Xcode 5.0 Build version 5A1413
[phonegap] using the local environment
[phonegap] adding the iOS platform...
[warning] missing library cordova/ios/3.0.0
[phonegap] downloading https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;a=snapshot;h=3.0.0;sf=tgz...
[phonegap] Requesting {"uri":"https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git;a=snapshot;h=3.0.0;sf=tgz"}...

stream.js:94
      throw er; // Unhandled stream error in pipe.
            ^
Error: incorrect header check
    at Zlib._binding.onerror (zlib.js:295:17)

它还会导致在 ~/.cordova/lib/ios/cordova/3.0.0/ 创建一个空目录,这需要我在继续之前 rm -rf 相同,否则我会得到一个完全不同的错误......

在浏览器中调用相同的 URL 会导致 404。

4

2 回答 2

1

问题似乎在于它是cordova lib的无效或损坏的url。

如果您不能等待它工作或 phonegap 库得到更新,您可以修改以下文件

<location to phonegap node module>/node_modules/cordova/platforms.js

将版本属性更改为 3.1.0-rc1,例如

{
parser : require('./src/metadata/ios_parser'),
url    : 'https://git-wip-us.apache.org/repos/asf?p=cordova-ios.git',
version: '3.1.0-rc1'
},
于 2013-09-20T11:31:24.953 回答
0

对于它的价值,我刚刚遇到了与“cordova platform add ios”相同的问题。Martinj 的建议(编辑platforms.js)对我有用。

于 2013-09-20T12:13:41.130 回答