gpt4 book ai didi

java - com.android.build.api.transform.TransformException :

转载 作者:行者123 更新时间:2023-11-30 00:20:18 24 4
gpt4 key购买 nike

为什么我会收到此错误,当我同步 gradle 时不会发生,但当我运行项目时会收到​​此错误。

任务“:app:transformClassesWithJarMergingForDebug”执行失败。

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/android/gms/common/api/zzf.class

我不知道哪个依赖导致这个错误,我的依赖是。

dependencies {
compile project(':RNAdMob')
compile project(':react-native-maps')
compile project(':react-native-fcm')
compile project(':react-native-device-info')
compile project(':react-native-splash-screen')
compile project(':react-native-calendar-events')
compile project(':react-native-device-token')
compile project(':react-native-vector-icons')
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules

compile (project(':react-native-fcm')){
exclude group: "com.google.firebase"
}
compile(project(':react-native-maps')){
exclude group: 'com.google.android.gms', module: 'play-services-base'
exclude group: 'com.google.android.gms', module: 'play-services-maps'
}
compile ("com.google.android.gms:play-services-base:10.0.1")
{
force = true;
}
compile ("com.google.android.gms:play-services-maps:10.0.1")
{
force = true;
}
compile ('com.google.firebase:firebase-core:10.0.1') {
force = true;
}
compile ('com.google.firebase:firebase-messaging:10.0.1') {
force = true;
}
compile (project(':react-native-device-info')){
exclude group: "com.google.android.gms"
}
compile ('com.google.android.gms:play-services-gcm:10.0.1'){
force = true;
}

最佳答案

这样的问题通常是由你的某些依赖的内部依赖引起的。所以你需要从你的依赖中排除冲突的依赖。但在大多数情况下,作为开发人员,您不知道需要从哪个库中排除。

因此,只需尝试将 exclude group: "com.google.android.gms" 一一添加到所有库中,然后尝试编译。编译项目时,您已找到要从中排除的所需库。

关于java - com.android.build.api.transform.TransformException :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46424507/

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