没有Applozic gradle dependecy所有工作都很好。
在Project level build.gradle中我有:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
//classpath 'com.google.gms:google-services:3.0.0'
//classpath 'com.google.gms:google-services:1.5.0-beta2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
在App中,我的build.gradle是:
dependencies {
configurations {
all*.exclude group: 'xpp3', module: 'xpp3'
}
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-maps:9.0.2'
compile 'com.google.android.gms:play-services-location:9.0.2'
compile 'com.google.android.gms:play-services-plus:9.0.2'
compile 'com.google.android.gms:play-services-auth:9.0.2'
compile 'com.applozic.communication.uiwidget:mobicomkitui:4.3'
}
正确地进行Gradle同步。当我运行log produce
时Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / android / gms / iid / zzb $ zza $ zza.class
如果我删除applozic行所有工作。
我发现了类似的问题,但不像我的
答案 0 :(得分:2)
Applozic android聊天sdk v4.3正在使用谷歌播放服务8.4.0,因为它提供了重复的条目:com / google / android / gms / iid / zzb $ zza $ zza.class错误。我们已升级到最新版本的Google Play服务9.0.2。
这是新版本
compile 'com.applozic.communication.uiwidget:mobicomkitui:4.4'
这是applozic android chat sdk documentation link