添加 Fresco 后构建出错

Error in build after adding Fresco

我已将 Fresco 添加到我的 build.gradle:

compile 'com.facebook.fresco:fresco:0.9.0+'

每当我尝试构建项目时,都会收到以下错误:

错误:任务“:app:transformClassesWithJarMergingForDebug”执行失败。

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: bolts/AggregateException.class

如果我删除依赖项,错误就会消失。我在搜索中找不到类似的内容。

在gradle文件中添加以下代码

compile ('com.facebook.fresco:fresco:0.9.0+'){
exclude group: 'com.parse.bolts', module: 'bolts-applinks';
exclude module: 'bolts-android';
exclude group: 'com.parse.bolts', module: 'bolts-tasks';
}