gpt4 book ai didi

android - 如何修复 android 中的重复条目 ZipException?

转载 作者:太空狗 更新时间:2023-10-29 16:32:28 28 4
gpt4 key购买 nike

我在我的 Android 应用程序中使用 EBS 支付网关。 EBS 在其文件夹中包含 volley 库。我还为我的项目使用了 volley 库。所以我得到了这样的异常。

Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: com/android/volley/AuthFailureError.class

下面是我的gradle文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

repositories {
mavenCentral()
}

configurations{
all*.exclude group: 'com.android.volley', module: 'toolbox'
}

defaultConfig {
applicationId "com.example.nivedha.rents"
minSdkVersion 16
targetSdkVersion 23
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:multidex:1.0.1'
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile project(':EBS')
}

帮我解决这个问题..

最佳答案

这样做:

当你添加 com.mcxiaoke.volley:library-aar:1.0.0 时你的一些依赖发生了冲突

所以,现在你要做的是

  1. 在android studio中搜索CTRL+SHIFT+NAuthFailureError.class

  2. 查看哪个 jar 包含这个并像下面那样删除它(这只是一个例子/你必须找出重复的类并手动删除它)

configurations{
all*.exclude module: 'toolbox'
}

关于android - 如何修复 android 中的重复条目 ZipException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35497691/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com