android studio执行 Information:Gradle tasks [:app:assembleDebug]失败处理
Posted 星辰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android studio执行 Information:Gradle tasks [:app:assembleDebug]失败处理相关的知识,希望对你有一定的参考价值。
Error:Execution failed for task ‘:app:mergeDebugResources’. > Some file crunching failed, see logs for details
根据报错提示:找到AAPT err(Facade for 1339051672): ERROR: 9-patch image D:\WORK_PASECE\anroid_studio\android_workpace\MyApplication\app\src\main\res\drawable\chatitem_in_bg.9.png malformed.
这个文件。
1.做点9处理。
2.如果点9处理不能能解决问题,可以
在你的主工程文件夹里的build.gradle文件里,添加配置如下:
aaptOptions.cruncherEnabled = false
aaptOptions.useNewCruncher = false
添加位置如下:
Android {
compileSdkVersion 24
buildToolsVersion ‘24.0.1’
aaptOptions.cruncherEnabled = false
aaptOptions.useNewCruncher = false
defaultConfig {
minSdkVersion 10
targetSdkVersion 19
}`
………………
以上是关于android studio执行 Information:Gradle tasks [:app:assembleDebug]失败处理的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 核心错误无法在 macOS 中找到 Android Studio 可执行文件
android studio 里面build,clean区别