首页
编程随笔
Java笔记
Html/Css/Js
Android
后端笔记
服务器搭建
BUG收集
Java异常
Android异常
在线工具
Json格式化
编码/解码
Epub在线编辑
登录
发布文章
个人文章
退出登录
首页
技术教程
BUG收集
在线工具
资源下载
登录
发布文章
退出登录
搜索
当前位置:
首页
-
博客
- 正文
关闭
导入的Jar包冲突
更新时间:2022-09-25 09:11:03
阅读数:686
发布者:落幕
异常 ```java Error:Execution failed for task ':app:transformClassesWithMultidexlistForDebug'. > java.io.IOException: Can't write [E:\project\AndroidStudioProjects\AccostLearn\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [C:\Users\root\.gradle\caches\transforms-1\files-1.1\support-core-ui-27.1.1.aar\4f9e79a051eb475331d34c98b7de8e58\jars\classes.jar(;;;;;;**.class)] (Duplicate zip entry [classes.jar:android/support/design/widget/CoordinatorLayout$Behavior.class])) ``` 此为导入Glide所导致 implementation 'com.github.bumptech.glide:glide:4.7.1' annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1' 解决办法: implementation ('com.github.bumptech.glide:glide:4.7.1'){ exclude group: 'com.android.support'//解决包冲突 }