如何从gradle中的jar文件中排除瞬态依赖?

时间:2017-04-05 12:13:21

标签: gradle android-gradle

我有一个与SDK相关的android项目,该文件在jar文件中可用,因此我已将其放在jar文件夹中,但gson文件包含compile fileTree(include: ['*.jar'], dir: 'libs') { exclude group: 'com.google.code.gson', module: 'gson' } 库在它,它的接缝是过时的。所以我想排除它并为gson添加单独的依赖。

我该怎么做? 感谢

UPD

Error:(49, 0) Gradle DSL method not found: 'exclude()'

导致错误

{{1}}

1 个答案:

答案 0 :(得分:0)

您可以明确地将其从依赖项中排除:

compile fileTree(dir: 'libs', include: '*.jar', excludes: ['gson-stuff'])

我希望这有用。