Gradle以Facebook SDK,Fresco lib和Retrofit失败了吗?

时间:2016-02-10 22:48:04

标签: android facebook-sdk-4.0 retrofit2 fresco

有没有人试图实施Facebook SDK和Fresco lib和Retrofit? 关于螺栓,我的gradle失败了。

 Error:Execution failed for task   ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException:  java.util.zip.ZipException: duplicate entry:    bolts/AggregateException.class

这是我的gradle失败。我尝试使用Fresco for OkHttp,但我仍然遇到上述问题。

dependencies {
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.facebook.android:facebook-android-sdk:4.+'
    compile 'com.facebook.fresco:fresco:0.9.0'
    compile 'com.facebook.fresco:imagepipeline-okhttp:0.9.0'
    compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
    compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
    compile 'com.android.support:multidex:1.0.1'
}

1 个答案:

答案 0 :(得分:8)

这对我有所帮助:

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';
}