Cordova Error: Failed to fetch platform cordova-browser@~5.0.0

后端 未结 2 1895
北海茫月
北海茫月 2020-12-21 16:55

when i build cordova project it working fine. output also shown.But, after few minutes later it shows this error

Error: Failed to fetch platform cordo

2条回答
  •  失恋的感觉
    2020-12-21 17:05

    Remove the platform which you try to run on it (browser, ios, android, and etc.)

    For example (run cmd, locate to your project folder and type):

    cordova platform rm browser
    

    Add the platform again

    cordova platform add browser
    

    You can run

    cordova run browser
    

提交回复
热议问题