gpt4 book ai didi

android - ZipException : duplicate entry: com/google/android/gms/internal/measurement/zzwn. 类

转载 作者:行者123 更新时间:2023-11-29 18:46:15 24 4
gpt4 key购买 nike

出了什么问题:任务“:app:transformClassesWithJarMergingForRelease”执行失败。

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/android/gms/internal/measurement/zzwn.class

我尝试创建一个任务来删除重复项,但没有成功。

这个任务:

task findDuplicates {
doLast {
def findMe = 'com/google/android/gms/internal/measurement/zzwn.class'
configurations.compile.asFileTree.matching {
include '**/*.jar'
}.files.each { File jarFile ->
zipTree(jarFile).visit { FileVisitDetails fvd ->
if (fvd.path == findMe) {
println "Found $findMe in $jarFile.name"
}
}
}
}
}

我的依赖项:

dependencies {
compile project(':react-native-fast-image')
compile project(':react-native-facebook-login')
compile project(':realm')
compile project(':react-native-sqlite-storage')
compile project(':react-native-device-info')
compile project(':react-native-splash-screen')
compile project(':react-native-vkontakte-login')
compile project(':react-native-google-analytics-bridge')
compile project(':react-native-custom-tabs')
compile project(':react-native-onesignal')
compile project(':react-native-fabric')
compile project(':react-native-vector-icons')
compile fileTree(dir: "libs", include: ["*.jar"])
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.facebook.react:react-native:+' // From node_modules
compile 'com.facebook.fresco:animated-gif:1.9.0'
compile('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') {
transitive = true;
}
}

最佳答案

我发现 react-native-google-analytics-bridgereact-native-onesignal 之间存在冲突,我添加了依赖项 compile 'com.google.firebase :firebase-messaging:17.1.0'app/build.gradle 中。

我希望这会对某人有所帮助。

关于android - ZipException : duplicate entry: com/google/android/gms/internal/measurement/zzwn. 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51772980/

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