当我尝试使用 YouTubeData API 构建应用程序时,出现“:app:packageAllDebugClassesForMultiDex”错误。我研究了其他几个涵盖此错误的线程,我得出的结论是我的构建文件中有库,这些库正在创建对构建文件的重复引用。我知道触发错误的文件是:
'com/google/api/client/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新手,您能指出我的任何方向将不胜感激。提前致谢。