[SOLVED] Cordova - App id contains a reserved word, or is not a valid identifier
You might be getting this error message when you are creating a new Cordova Project.You will see how to get rid of it.
New Cordova project can be created using cordova create command and it's syntax is follows is as
cordova create path [id [name [config]]] [options]
Follow below steps to get rid of the error messages.
- Make sure there are no extra spaces after cordova create and path
cordova create HelloWorld
- Don't use reserved words in id
// error because 'in' is reserved
cordova create HelloWorld in.xxxx.xxxxxx xxxxx
// valid
cordova create HelloWorld com.xxx.xxxxx xxxxx