1

当我将 Microsoft Azure 移动服务 SDK 添加到我的项目时:

compile 'com.microsoft.azure:azure-mobile-services-android-sdk:2.0.2'

我收到此错误:

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: com/google/common/base/FinalizableReference.class

可能是什么原因,我该如何解决?
我猜我可以为 Gradle 制定一些排除规则,但那会是什么样子?

4

2 回答 2

5

运行任务dependencies,我们可以看到azure-mobile-services-android-sdk包含两个依赖项。

\--- com.microsoft.azure:azure-mobile-services-android-sdk:2.0.2
     +--- com.google.code.gson:gson:2.3
     \--- com.google.guava:guava:18.0

报告为重复的类来自Guava。如果您不直接使用它,则可能是另一个依赖项正在使用它(可能与另一个版本一起使用)。一个可能的解决方法是从依赖项中排除 Guava。

compile('com.microsoft.azure:azure-mobile-services-android-sdk:2.0.2') {
    exclude module: 'guava'
}

编辑:

回答您的评论,dependencies在您的项目中运行任务并尝试找到使用 guava 作为依赖项的其他库(可能是旧版本的 guava)。

(in your project root folder)
$ cd app
(if you are running on OSX or Linux)
$ ../gradlew dependencies
(if you are running on Windows)
$ ../gradlew.bat dependencies

当您确定有什么依赖guava项时,请以与之前使用 azure 相同的方式排除它。

于 2015-06-29T21:11:21.533 回答
1

它;s 因为您有两个包含相同 java 类的库。该命令gradle dependencies应该告诉你它是什么。

对于如何排除依赖项,您有几种选择:

dependencies {

 compile('com.microsoft.azure:azure-mobile-services-android-sdk:2.0.2') {


   exclude module: 'cglib' //by artifact name

   exclude group: 'org.jmock' //by group

   exclude group: 'com.unwanted', module: 'someLib' //by both name and group

 }

}
于 2015-06-29T21:14:10.467 回答