我试图将旧的Android应用程序移植到新设备上。从Android 5.x到7.1可以很好地工作,但它在Android 4.x版本中不起作用。
当我尝试在Android设备或Android 4.x的模拟器中安装它时,构建总是失败并出现相同的异常:
Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / android / gms / analytics / internal / Command.class
我试图搜索"重复输入",但我无法。我不确定问题是什么。
这是我的构建gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "app-name"
minSdkVersion 14
targetSdkVersion 17
multiDexEnabled true
}
configurations {
all*.exclude group: 'com.android.support', module: 'support-v4'
all*.exclude group: 'com.android.support', module: 'support-annotations'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors {
}
}
dependencies {
compile ('com.android.support:support-v4:25.0.0'){
exclude module: 'support-v4'
}
compile ('com.google.android.gms:play-services:8.4.0'){
exclude module: 'support-v4'
}
compile files('libs/libGoogleAnalyticsServices.jar')
}

答案 0 :(得分:1)
删除该行:
compile ('com.google.android.gms:play-services:8.4.0'){
exclude module: 'support-v4'
}
或 编译文件('libs / libGoogleAnalyticsServices.jar')。 你正在两次编译同一个库
'com.google.android.gms:play-services:8.4.0'
也有GoogleAnalyticsServices模块。