错误:任务':app:packageAllDebugClassesForMultiDex'执行失败。 > java.util.zip.ZipException:重复的条目问题

时间:2015-08-18 19:54:45

标签: android android-studio gradle mapsforge

我正在努力运行基本的Mapsforge应用程序。我已将所有必需的jar文件添加到项目和gradle中。但我无法运行应用程序。出现以下错误:

Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'. > java.util.zip.ZipException: duplicate entry: org/mapsforge/map/reader/Way.class

这是我的gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "22.0.1"

defaultConfig {
    applicationId "test.mapsforge"
    minSdkVersion 14
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
}
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:22.2.0'
    compile files('libs/mapsforge-core-0.5.1.jar')
    compile files('libs/mapsforge-map-0.5.1.jar')
    compile files('libs/mapsforge-map-android-0.5.1.jar')
    compile files('libs/mapsforge-map-awt-0.5.1.jar')
    compile files('libs/SwingMapViewer-0.5.1.jar')
}


文件夹结构

Folder structure


我尝试在gradle配置中添加multiDexEnabled true但没有工作

2 个答案:

答案 0 :(得分:0)

您是否需要进行多重索引?看起来有些稀缺,除非他们用方法包装,否则我不知道你将如何超越65k方法限制。我也没有看到编译的依赖关系com.android.support:multidex:1.0.0'请检查https://developer.android.com/tools/building/multidex.html或尝试不使用ultidex。您还可能需要扩展MultiDexApplication而不是常规应用程序。我认为你的问题实际上是一个重复的依赖,而不是一个dex限制。你试过gradle:app:dependencies吗?

答案 1 :(得分:0)

我也面临同样的错误。当我删除swing map viewer时,即使不使用multiDexEnabled,也可以正常工作