我整天都在 Android Studio 中与这个错误作斗争。项目是从 Eclipse 解决方案中导入的。我一直在尝试实施为类似帖子列出的所有修复程序,但没有任何效果。我是安卓初学者。
我很乐意提供任何进一步的信息。
错误:任务“:app:packageAllDebugClassesForMultiDex”执行失败。
java.util.zip.ZipException:重复条目:com/google/zxing/BarcodeFormat.class
请帮忙!!我应该尝试让它在 Eclipse 中运行吗?
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.2'
}
}
allprojects {
repositories {
jcenter()
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.appname.android"
minSdkVersion 8
targetSdkVersion 18
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:22.1.1'
compile files('libs/ksoap2-android-assembly-3.1.0-jar-with-dependencies.jar')
provided files('libs/zxing-core.jar')
}