我收到以下错误。 过去两天我没有尝试过解决问题,但没有解决问题。
错误:任务':app:packageAllDebugClassesForMultiDex'的执行失败。 java.util.zip.ZipException:重复条目:org / apache / http / concurrent / BasicFuture.class
这是我的build.grade
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.example.project.logintest2"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
compile files('libs/httpclient-4.5.1.jar')
compile files('libs/httpcore-4.4.3.jar')
}
我有以下两个库: - httpclient-4.5.1.jar - http-4.4-3.jar
感谢您的帮助。
答案 0 :(得分:0)
在defaultConfig中,您需要在下面的行中添加以避免错误
// Enabling multidex support.
multiDexEnabled true
//like this
defaultConfig {
applicationId "com.example.project.logintest2"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}