首页 > 代码库 > android studio执行 Information:Gradle tasks [:app:assembleDebug]失败处理
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]失败处理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。