ionic build android failure - Execution failed for task processDebugResources

后端 未结 14 1961
有刺的猬
有刺的猬 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:46

    To get more info to debug this go in to the ./platforms/android/ folder and run:

    Mac users:

    gradlew --info build clean
    

    Linux users (thanks Pierre):

    ./gradlew --info build clean
    

    Windows users:

    gradlew.bat --info build clean
    

    This gives you a lot more detail.

    My issue was solved this way, found some files that where incorrectly dropped into the project folder with spaces in the file names.

提交回复
热议问题