错误:任务':app:packageAllDebugClassesForMultiDex'

时间:2015-05-06 03:44:59

标签: android gradle android-youtube-api android-multidex

我得到了一个':app:packageAllDebugClassesForMultiDex'我尝试使用YouTubeData API构建应用程序时出错。我已经研究过几个其他线程来解决这个错误,我得出的结论是我的构建文件中有库,它们正在创建一个重复的构建文件引用。我知道触发错误的文件是:

  

' COM /谷歌/ API /客户端/ googleapis / JSON / GoogleJsonErrorContainer.class'

但是如何在不删除整个库的情况下从构建文件中排除引用?

这是我的构建文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "co.hannalupi.fitnessblenderapp"
        minSdkVersion 16
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile files('libs/YouTubeAndroidPlayerApi.jar')
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.google.apis:google-api-services-youtube:v3-rev136-1.20.0'

}

这是我得到的错误:

    FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: com/google/api/client/googleapis/json/GoogleJsonErrorContainer.class

我是Android的新手,你可以指出我的任何方向都将非常感激。提前谢谢。

1 个答案:

答案 0 :(得分:0)

有类似错误的人的更新 - 作为最后的手段,我删除了我在桌面上工作的项目文件,并从GitHub克隆了一个新的副本。导入和运行新副本没有错误!!