私は一日中 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')
}