cordova - Error: Failed to fetch platform android

后端 未结 15 2377
情深已故
情深已故 2020-11-29 09:19

I installed cordova and create a new project.

But when I use this command to add android platform:

cordova platform add android

15条回答
  •  -上瘾入骨i
    2020-11-29 10:08

    There seems to be an error with android@6.2.x and later. I had the same issue and using the below step was able to build my apk.

    Do the following:

    cordova platform remove android
    

    Then add 6.1.2 specifically

    cordova platform add android@6.1.2
    

    Also found the following as an temporary workaround

    cordova platform add android --nofetch
    

提交回复
热议问题