1

我一直在努力解决一个问题,尝试了几个选项,但无法解决。

仅在创建签名 apk 时出现问题:

错误:任务“:app:transformClassesWithJarMergingForDebug”执行失败。com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com/applovin/adview/AdViewController.class

库结构: http: //prntscr.com/ay9uam

依赖结构:

dependencies {
    compile 'com.android.support:multidex:1.0.1'

    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.android.support:recyclerview-v7:23.3.0'
    compile project(':library')
    compile 'com.google.android.gms:play-services:8.4.0'
    //compile 'com.google.android.gms:play-services-ads:8.4.0'
    compile 'com.pollfish:pollfish:+:googleplayRelease@aar'

}

注意:这是我需要添加multiDexEnabled truecompile 'com.android.support:multidex:1.0.1'解决一个问题,所以我添加了它。当我这样做时,CMD+O(Mac) 搜索AdViewController.class,我得到: http: //prntscr.com/ay9uoy

解决问题的下一步应该是什么,应用程序在所有情况下都运行良好(在模拟器、设备中运行..),并且仅在生成签名的 apk 时,我遇到了上述问题,这是我任务的最后一步,我米卡在。

任何回复都会对我有好处。

4

2 回答 2

0

看起来 play-services 已经包含 support-v4。尝试将其从类路径中排除

compile('com.google.android.gms:play-services:8.1.0') {
exclude group: 'com.android.support', module: 'support-v4'
}

否则你使用这个参考: TransformException duplicate entry for common.annotations.Beta

于 2016-04-29T12:13:12.697 回答
0

最后我可以解决这个问题。由于它是 applovin 类重复,因此需要排除它,技巧是执行以下操作:

compile fileTree(include: ['*.jar'],excludes: ['applovin-sdk-6.1.5.jar'], dir: 'libs')

希望它可以帮助某人。

于 2016-04-29T14:46:49.397 回答