尝试构建我的应用时
phonegap local build android
我有这个问题:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Users/xxxxxxxx/Library/Android/sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1
我不知道如何解决这个问题,因为这个问题主要受到人们在java中开发应用程序的困扰。
提前感谢您的回答
答案 0 :(得分:1)
我有同样的问题。事实证明,我有一些图标/闪屏图像(即:platforms / android / res / drawable-hdpi等)和其他图像(或者错过)。
您可以从您的platforms / android目录中检查运行'./gradlew --debug clean build'。在日志中搜索':processDebugResources FAILED'字符串并在其附近找到导致问题的文件名。就我而言,它是'añonuevo.png'('ñ'引起了这个问题)
如果这不起作用,看看这些其他的SO问题,他们也可以提供帮助:
ionic build android failure - Execution failed for task processDebugResources
Cordova build android error Execution failed for task ':processDebugResources'
Android Studio build failed at "processDebugResources" when using 9-patch images
PS:我正在使用最新的phonegap(6.3.0)和最新的Android Studio(2.1.2)