cordova build android gives me the following err
node_modules/q/q.js:126 throw e; (*error details)
This question has been asked before, but
I run in the same problem and solved it by escaping non-letter characters in config.xml. Particulary for the name attribute:
config.xml
name
Temps d'espera
I changed it to:
Temps d\'espera
And then it run perfectly. Hope it helps.