当我尝试编译项目时,出现错误:
错误:任务执行失败 ':应用程序:transformClassesWithJarMergingForDebug'。 com.android.build.api.transform.TransformException: java.util.zip.ZipException:重复条目: COM /谷歌/机器人/克/内部/ zzrn $ 1.class
我猜这个问题与我的依赖关系有关。这是一段代码:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.github.siyamed:android-shape-imageview:0.9.+@aar'
compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.volley:volley:1.0.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.google.firebase:firebase-auth:9.6.1'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.google.android.gms:play-services-auth:9.6.1'
compile 'com.google.android.gms:play-services-plus:8.3.0'
compile 'uk.co.chrisjenx:calligraphy:2.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
testCompile 'junit:junit:4.12'
我正在调查,尝试使用cmd和gradlew清理,但问题仍然存在。
任何人都有同样的问题,可以告诉我出了什么问题?
答案 0 :(得分:2)
我发现了问题,请删除compile 'com.google.firebase:firebase-auth:9.6.1'
并将版本9.6.1更改为compile 'com.google.android.gms:play-services-auth:9.6.1'
的8.3.0