4

我正在构建一个项目,它有两个类(A 和 B),它们都继承自 BaseClass。A 和 B 两个类都有注释 @Parceler。当我为操作系统版本为 4.1.2(API 16)的手机构建它时,它给了我这个错误:

Execution failed for task ':app:transformClassesWithJarMergingForDebug'.  
com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry:  
com/example/BaseClass$$PackageHelper.class

如果我用牛轧糖为手机构建它,就没有问题。

我读过有关使用 parcelsIndex 的信息,但 Parceler 不支持我正在使用的版本 - 1.1.8。

有没有解决这个问题的方法?

4

2 回答 2

1

导致此错误是因为您为同一个库使用了 2 个依赖项,但依赖项的版本不同。

对于您的情况,我需要更多数据,但我将举一个似乎可以解释您的问题的示例:假设您的项目使用库 x,而库 x 使用依赖项: compile "com.android.support:appcompat-v7:25.3.0"

这就是你的 gradle 的样子:

apply plugin: 'com.android.application'

android {
    ...
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')

    compile "com.company.library_x:+"
    compile "com.android.support:appcompat-v7:23.4.0"
}

事情就是这样,因为您使用的是相同的依赖项,library_x并且依赖项中有冲突,因为您正在导入 version23.4.0而库正在使用 version 25.3.0。当你构建一个项目时,所有的依赖项都会被获取并“下载”,在这种情况下,你已经下载了同一个库的 2 个版本并且你有重复的条目。您没有很多选择,但要使用相同的版本library_x,这意味着在您的情况下,使用最新版本构建您的项目。

仅供参考,更多信息:在build->intermediates->exploded-aar->appcompat-v7->25.3.0->...class_of_the_error.class您实际上可以看到导致问题的值。

于 2017-07-11T09:45:35.353 回答
0

我在不同的模块中使用这些类——这似乎是造成它的原因。虽然可能有一些使用@ParcelClass注释的解决方案(https://github.com/johncarl81/parceler/issues/225?),但我只是将它们移动到同一个模块,现在它正在构建。

于 2017-07-11T02:02:33.847 回答