构建APK会生成错误:任务

时间:2018-01-11 11:31:44

标签: java android google-play-services

当我尝试使用我当前的gradle.build文件进行构建时,出现错误,然后执行我的gradle构建。

为什么会导致此错误?

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException:
java.util.zip.ZipException: duplicate entry: com/google/android/gms/internal/zzaf$zzd.class

这是我的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.usmans.videodownloader"
        minSdkVersion 17
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    useLibrary 'org.apache.http.legacy'

}

dependencies {

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'

// glide
compile 'com.github.bumptech.glide:glide:3.7.0'

compile 'com.squareup.okio:okio:1.11.0'


compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.google.android.gms:play-services-analytics:8.4.0'

compile 'com.facebook.android:audience-network-sdk:4.+'

compile 'com.io.tools.android.ramiloif.folderchooser:folderchooser-dialog:1.0.6'

我不知道造成这种情况的原因。我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

更改并从Facebook库中排除gms。

compile ('com.facebook.android:audience-network-sdk:4.+'){
        exclude group:"com.google.android.gms"
    }

然后清理并重建您的项目。

希望它有效:)