ionic build android failure - Execution failed for task processDebugResources

后端 未结 14 1857
有刺的猬
有刺的猬 2020-12-05 17:55

I am using Mac Yosemite. Getting the following failure on running a build for android platform :

FAILURE: Build failed with an exception.

* What went wrong:         


        
相关标签:
14条回答
  • 2020-12-05 18:58

    In my case, it was pushwoosh plugin.

    <gap:plugin name="pushwoosh-phonegap-plugin">
    

    We don't need to remove the plugin. Just set the version of plugin which is worked last time. This is worked for me.

    <gap:plugin name="pushwoosh-phonegap-plugin"  spec="7.0.4" source="npm"/>
    
    0 讨论(0)
  • 2020-12-05 19:01

    Try this (Worked for me):

    1. Uninstall Current JDK
    2. Install Latest JDK
    3. Run: cordova build --debug android
    0 讨论(0)
提交回复
热议问题