Java类重复条目

时间:2017-07-17 22:25:42

标签: android

您好我在gradle中收到此错误:

错误:任务执行失败':app:transformClassesWithJarMergingForRelease'。

  

com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / like / CircleView $ 1.class

这些是我的依赖项:

 compile project(':library')
    compile project(':likebutton')
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.1'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.android.support:cardview-v7:25.3.1'
    compile 'com.google.firebase:firebase-messaging:10.2.4'
    compile 'com.android.support:design:25.3.1'
    compile 'com.mcxiaoke.volley:library:1.0.19'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.android.support:support-vector-drawable:25.3.1'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.github.pavlospt:circleview:1.3'
    compile 'com.github.jd-alexander:LikeButton:0.2.1'
    compile 'com.thefinestartist:ytpa:1.2.1'
    compile 'com.google.firebase:firebase-core:10.2.4'
    compile 'com.daimajia.androidanimations:library:1.0.3@aar'
    compile 'com.facebook.android:facebook-android-sdk:[4,5)'
    compile 'com.google.firebase:firebase-ads:10.2.4'
    compile 'com.daimajia.numberprogressbar:library:1.4@aar'
    compile 'com.google.android.gms:play-services-auth:10.2.4'
    compile 'com.google.android.gms:play-services-ads:10.2.4'

当我添加此lib时发生错误:

compile 'com.github.jd-alexander:LikeButton:0.2.1'

它与这个冲突:

 compile 'com.github.pavlospt:circleview:1.3'

如何从两个库中的一个中排除com / like / CircleView $ 1.class?

哪一个要从中排除?

1 个答案:

答案 0 :(得分:1)

问题是您要导入LikeButton库2次。

一个人使用

compile project(':likebutton')

和一个使用

compile 'com.github.jd-alexander:LikeButton:0.2.1'

您需要删除其中一个语句才能构建应用