java.util.zip.ZipException:重复条目:org/ksoap2/SoapEnvelope.class
java.util.zip.ZipException: duplicate entry: org/ksoap2/SoapEnvelope.class
当我尝试将我的旧 Eclipse 项目迁移到 Android Studio 2 时遇到问题。我收到以下错误消息:
Error:Execution failed for task
':app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry:
org/ksoap2/SoapEnvelope.class
我的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.myorg.myapp"
minSdkVersion 14
targetSdkVersion 23
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.google.android.gms:play-services:10.2.0'
compile files('libs/ksoap2-android-assembly-2.5.2-jar-with-dependencies_timeout1.jar')
compile files('libs/ksoap2-j2se-full-2.1.2.jar')
compile files('libs/PayPal_MPL.jar')
}
不太明白这些错误是什么意思。任何的想法?谢谢。
问题是您正在使用两个包含相同 类.
的 jar 文件
ksoap2-android-assembly-2.5.2-jar-with-dependencies_timeout1.jar
两个 jar 包含大部分相同的内容 类。更好的方法是使用单个 jar 文件而不是使用包含类似 类.
的多个 jar
compile files('libs/ksoap2-android-assembly-2.5.2-jar-with-dependencies_timeout1.jar')
compile files('libs/ksoap2-j2se-full-2.1.2.jar')
有什么事请告诉我
当我尝试将我的旧 Eclipse 项目迁移到 Android Studio 2 时遇到问题。我收到以下错误消息:
Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/ksoap2/SoapEnvelope.class
我的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.myorg.myapp"
minSdkVersion 14
targetSdkVersion 23
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.google.android.gms:play-services:10.2.0'
compile files('libs/ksoap2-android-assembly-2.5.2-jar-with-dependencies_timeout1.jar')
compile files('libs/ksoap2-j2se-full-2.1.2.jar')
compile files('libs/PayPal_MPL.jar')
}
不太明白这些错误是什么意思。任何的想法?谢谢。
问题是您正在使用两个包含相同 类.
的 jar 文件ksoap2-android-assembly-2.5.2-jar-with-dependencies_timeout1.jar
两个 jar 包含大部分相同的内容 类。更好的方法是使用单个 jar 文件而不是使用包含类似 类.
的多个 jarcompile files('libs/ksoap2-android-assembly-2.5.2-jar-with-dependencies_timeout1.jar')
compile files('libs/ksoap2-j2se-full-2.1.2.jar')
有什么事请告诉我