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 comman
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.