Android打包jar包冲突解决办法

Error:Execution failed for task ':app:transformClassesWithJarMergingForRelease'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: 
duplicate entry: okhttp3/Address.class

如上,只需要在app的build.grade里面的android标签里面添加

 configurations {
        all*.exclude  module: 'okhttp3'
        all*.exclude  module: 'okio'
    }

即可。如果引用的是jar包,添加上述代码之后还是不能解决,那就把jar包改成的方式引入。

我的个人网站,任性戳→:在线助手-你的在线工具箱

你可能感兴趣的:(Android打包jar包冲突解决办法)