I\'m developing an app in which I\'m using this library.
On compiling the project, this error containing TransformException
and RuntimeException<
Pull exclude out of the dependencies section and put in configurations. e.g.
dependencies {
...
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
compile 'org.apache.httpcomponents:httpmime:4.3.5'
...
}
configurations {
all*.exclude group: 'org.apache.httpcomponents',module: 'httpclient'
}