错误:任务':app:transformClassesWithJarMergingForDebug'执行失败。
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / android / gms / internal / zzbtt.class
答案 0 :(得分:1)
请确保所有Firebase和Google Play服务版本完全相同(例如11.0.2)
请参阅FirebaseUi github以获取用于Firebase 11.0.2的正确版本的表格
不相关,但您的Volley库依赖项已弃用(请参阅相应的Github页面)。同样,如果使用Apache HTTP库,则不应该使用Volley
答案 1 :(得分:0)
这有助于我./gradlew :app:dependencies
你会看到你所有的依赖关系:
| +--- com.google.android.gms:play-services-gcm:+ -> 11.0.4
| | +--- com.google.android.gms:play-services-analytics:+ -> 11.0.4
| \--- com.google.android.gms:play-services-location:+ -> 11.8.0
你必须找到错误的版本。就我而言,它是location:+ -> 11.8.0
我在app/build.gradle
像我这样修理它
compile('com.google.android.gms:play-services-location:11.0.4') {
force = true;
}