我正在为我的项目实现multi dex。我能够在实现multidex时编译代码,但在运行项目时,我在执行packageAllDebugClassesForMultiDex任务时遇到了下面提到的错误。 错误:任务执行失败':appname:packageAllDebugClassesForMultiDex'。
java.util.zip.ZipException:重复条目:android / support / multidex / MultiDex.class
依赖列表: -
dependencies {
compile project(':slidingMenu')
compile project(':androidPullToRefresh')
compile project(':googlePlayServices')
compile project(':caldroid')
compile files('libs/admsAppLibrary.jar')
compile files('libs/gson-2.3.1.jar')
compile files('libs/jackson-annotations-2.1.1.jar')
compile files('libs/jackson-core-2.1.1.jar')
compile files('libs/jackson-databind-2.1.1.jar')
compile files('libs/jsr305-1.3.9.jar')
compile files('libs/okhttp-2.2.0.jar')
compile files('libs/retrofit-1.9.0.jar')
compile files('libs/xtify-android-sdk-2.4.jar')
compile project(':clusterkraf')
compile files('libs/okio-1.0.0.jar')
compile files('libs/android-support-multidex.jar')
}
以下是我的项目结构。
库A包含我的应用程序类。我已经实现了multidex。 库B和库C依赖于库A. 我的启动项目D依赖于库B和库C.库D android menifest我已经定义了库A中可用的应用程序类。
答案 0 :(得分:0)
如果要在build.gradle中添加播放服务库,请在依赖项中添加compile 'com.google.android.gms:play-services:7.5.0'
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.5.0'
}
如果有冲突添加
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
.....
dexOptions {
preDexLibraries = false
}
.....
}
在android块中