如何从外部库中排除'jar'文件

时间:2017-04-24 13:33:22

标签: android performance android-layout gradle android-gradle

我正在使用我在依赖项中添加的httpclient-android-4.3.5.1.jar文件之一获取aar文件。

我想从此依赖项中排除此jar,因为这会给我duplicate库错误消息。

我尝试了很多东西,来自

 exclude group: 'org.apache.httpcomponents', module: 'httpclient-android'

     {exclude module: "httpclient-android-4.3.5.1"}

但没有任何帮助,'。jar file is still there and part of SDK`

enter image description here

1 个答案:

答案 0 :(得分:0)

你也试过这个吗?:

configurations { all { exclude module: 'httpclient' exclude module: 'httpcore' } }