Phonegap/Cordova build android node_modules/q/q.js throw e;

前端 未结 8 2061
长情又很酷
长情又很酷 2020-12-09 08:50

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

相关标签:
8条回答
  • 2020-12-09 09:35

    I had the same issue. It was caused by having an App with the same name (and the same reverse style domain name in my case) installed on the Android Device which originated from the Google Play store (it was our Beta release).

    0 讨论(0)
  • 2020-12-09 09:49

    I run in the same problem and solved it by escaping non-letter characters in config.xml. Particulary for the name attribute:

    <name>Temps d'espera</name>
    

    I changed it to:

    <name>Temps d\'espera</name>
    

    And then it run perfectly. Hope it helps.

    0 讨论(0)
提交回复
热议问题