k2fx
k2fx

Reputation: 1271

Cordova CLI: an error occurred during creation of ios sub-project

I've tested the Cordova 3.0.0 CLI Tool. The command

$ sudo cordova platform add android

was done OK. But i've got error during the command

$ sudo cordova platform add ios

Error

[Error: An error occured during creation of ios sub-project. /bin/sh: /Users/user/.cordova/lib/ios/cordova/3.0.0/bin/create: No such file or directory ]

When I decided to install a previous version

$ sudo npm install -g [email protected]

Yes, -

$ cordova platform add ios

command done his job. I got ios sub-project

I've Xcode 4.6.3 and xCode's Command Line tools are installed. Thanks in advance for any clue.

BTW, I'm not alone with such problem. Please see - PhoneGap CLI: "An error occured during creation of ios sub project" https://groups.google.com/forum/#!msg/phonegap/woWZzT39osg/CpK_rUIKmYAJ

Update: Fixed: the versioned folder was deleted i.e.

rm -rf ~/.cordova/lib/ios/cordova/3.0.0/

and after

$ sudo cordova platform add ios

ios platform was added with no errors.

Upvotes: 7

Views: 10038

Answers (4)

jsidera
jsidera

Reputation: 1841

Sometimes this error occurs in Windows when the PATH variable is not set correctly to access "java" and "ant" exes. If you want to know if they are correctly set, you can just execute both (from any folder):

$ java

or

$ ant

and the program should be found.

Upvotes: 2

Wytze
Wytze

Reputation: 7904

Two things that might also help:

In the above question, one line of command-line code is missing that is clearly shown in the docs:

$ cordova platform add android

I forgot that too and it caused the error mentioned in the question.

Also, if you happen like me to have added the plugins before realizing this error, there is no way to fix that except to delete the whole project and rebuilding it.

Upvotes: 0

Tom
Tom

Reputation: 1697

I had this problem after killing a previous cordova platform add command without letting it finish. It seems that it had partially downloaded the platform files, but terminating it left it in an inconsistent state. As you mentioned, deleting that directory and then re-running the command resolved the problem.

rm -rf ~/.cordova/lib/ios/cordova/3.0.0/
cordova platform add ios

BTW, you shouldn't need to use sudo here. It would be better to run these commands as a normal user.

Upvotes: 10

James J. Ye
James J. Ye

Reputation: 467

I had the same problem and if you're also following PhoneGap 3.0 The Command Line Interface documentation and created the project by calling

$ cordova create HelloWorld com.example.hello "Hello World"

Then try removing the whitespace between Hello World.

$ cordova create HelloWorld com.example.hello "HelloWorld"

The reason it failed when adding android platform is because the command tries to create an Activity with the "Hello World". So removing the whitespace will resolve this issue.

Upvotes: 7

Related Questions