gpt4 book ai didi

java - 如何修复 java.util.zip.ZipException : duplicate entry: com/google/firebase/FirebaseApiNotAvailableException. 类?

转载 作者:行者123 更新时间:2023-11-29 08:32:52 25 4
gpt4 key购买 nike

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

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/firebase/FirebaseApiNotAvailableException.class

代码:

dependencies {
compile 'com.android.support:support-v4:24.0.0'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.android.support:mediarouter-v7:24.0.0'
compile(files('libs/play-hub-support.jar'))

compile('com.google.android.gms:play-services-cast:8.3.0') {
exclude group: 'com.google.android.gms'
}
compile('com.google.android.gms:play-services-analytics:8.3.0') {
exclude group: 'com.google.android.gms'
}
compile('com.google.android.gms:play-services-auth:9.0.2') {
exclude group: 'com.google.android.gms'
}
compile('com.google.android.gms:play-services-ads:11.2.0') {
exclude group: 'com.google.android.gms'
}

compile 'com.android.support:multidex:1.0.1'
compile 'com.larswerkman:HoloColorPicker:1.5'

最佳答案

不要使用不同版本的 Google Play 服务和 Firebase

compile('com.google.android.gms:play-services-cast:8.3.0')
compile('com.google.android.gms:play-services-analytics:8.3.0')
compile('com.google.android.gms:play-services-auth:9.0.2')
compile('com.google.android.gms:play-services-ads:11.2.0')

使用最新版本而不排除它们自身(*):

compile('com.google.android.gms:play-services-cast:11.4.0')
compile('com.google.android.gms:play-services-analytics:11.4.0')
compile('com.google.android.gms:play-services-auth:11.4.0')
compile('com.google.android.gms:play-services-ads:11.4.0')

(*)这个exclude没有意义。在您的依赖项中将其删除。

exclude group: 'com.google.android.gms'

关于java - 如何修复 java.util.zip.ZipException : duplicate entry: com/google/firebase/FirebaseApiNotAvailableException. 类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46524736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com