我一直在努力解决一个问题,尝试了几个选项,但无法解决。
仅在创建签名 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 true
的compile 'com.android.support:multidex:1.0.1'
解决一个问题,所以我添加了它。当我这样做时,CMD+O(Mac) 搜索AdViewController.class
,我得到: http: //prntscr.com/ay9uoy
解决问题的下一步应该是什么,应用程序在所有情况下都运行良好(在模拟器、设备中运行..),并且仅在生成签名的 apk 时,我遇到了上述问题,这是我任务的最后一步,我米卡在。
任何回复都会对我有好处。