我正在使用我在依赖项中添加的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`
答案 0 :(得分:0)
你也试过这个吗?:
configurations { all { exclude module: 'httpclient' exclude module: 'httpcore' } }