当前位置: 首页 > 知识库问答 >
问题:

Android:应用程序:transformClassesWithJarMergingForDebug失败-ZipException:重复条目

贺飞
2023-03-14

很抱歉,如果我问了一个重复的问题,但我找不到解决这个错误的方法。我在stackoverflow、gradle网站、android博客、google搜索上冲浪,但几个小时以来都没有一个有效的解决方案。我是一个机器人初学者,所以我不确定是否在其他帖子中遗漏了什么。

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
         compileSdkVersion 23
         buildToolsVersion "23.0.0"

defaultConfig {
    minSdkVersion 14
    targetSdkVersion 22
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile 'com.android.support:appcompat-v7:22.2.1.'
compile 'com.squareup.retrofit:retrofit:2.0.0-beta1'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta1'
compile 'com.android.support:recyclerview-v7:22.2.1.'
compile 'com.android.support:cardview-v7:22.2.1.'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.pnikosis:materialish-progress:1.7'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.google.android.gms:play-services:8.1.0'
compile files('libs/android-support-v4-22.2.1.jar')
compile files('libs/applovin-sdk-6.0.1.jar')
compile files('libs/appodeal-1.13.1.jar')
compile files('libs/chartboost-5.2.0.jar')
compile files('libs/my-target-4.0.13.jar')
compile files('libs/unity-ads-1.4.7.jar')
}

该项目运行良好,直到我从appodeal(那些编译文件行)添加一些库。我试图建立这个项目,但gradle给出了错误。

:app:transformClassesWithJarMergingForDebug'.
com.android.build.transform.api.TransformException: java.util.zip.ZipException: duplicate entry: android/support/v7/widget/RecyclerView$ItemDecoration.class

关于重复条目,同样的异常还有两个错误,我不知道为什么会出现这些错误:android/support/v4/PrintKitKat。class和android/support/multidex/multidex$V14.class。

我尝试升级gradle,使其无效并重新启动以清除缓存,忽略依赖项,然后重新构建/清理项目,查找要排除的潜在重复模块,并搜索项目以查找那些。类,但我没有发现重复。


共有1个答案

冯文彬
2023-03-14

您可以将其放在终端目录的根目录中进行测试

./gradlew clean
 类似资料: