志不强者智不达,言不信者行不果。这篇文章主要讲述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
【android studio执行 Information:Gradle tasks [:app:assembleDebug]失败处理】defaultConfig {
minSdkVersion 10
targetSdkVersion 19
}`
… … … … … …
推荐阅读
- Android之自定义EditText光标和下划线颜色
- 模拟图像处理与数字图像处理
- DB2验证和配置数据库详细步骤
- 最新ASP.Net常见的面试题和答案合集介绍
- 最新Spring常见面试题和答案合集(面试必备)
- 最新50+个AWS常见面试题和答案合集介绍
- 最新的数据科学常见面试题和答案合集推荐
- 最热门的Android常见面试题和答案合集
- 最新jQuery常见的面试题和答案合集介绍