Skip to main content
specify in what build.gradle file and in which level should the configuration be inserted
Source Link

I had the same problem. Putting this in the module build.gradle file, at root level, fixed that error.

configurations { compile.exclude group: "org.apache.httpcomponents", module: "httpclient" } 

I had the same problem. Putting this in the build.gradle file fixed that error.

configurations { compile.exclude group: "org.apache.httpcomponents", module: "httpclient" } 

I had the same problem. Putting this in the module build.gradle file, at root level, fixed that error.

configurations { compile.exclude group: "org.apache.httpcomponents", module: "httpclient" } 
Source Link
shaishgandhi
  • 5.7k
  • 1
  • 20
  • 7

I had the same problem. Putting this in the build.gradle file fixed that error.

configurations { compile.exclude group: "org.apache.httpcomponents", module: "httpclient" }