I am getting an httpclient warning upon build of project
Getting this Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.3.5 is ignored for debug as it may be conflicting with the internal version provided by Android.
I added the
android { ....
packagingOptions {
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
}
}
in the gradle file.
exclude dependencies which conflict with your old files.
compile('com.github.danysantiago:sendgrid-android:1', {
exclude group: 'org.apache.httpcomponents.httpclient-android'
exclude group: 'org.apache.httpcomponents.httpclient'
})
Cause 1: java.util.concurrent.ExecutionException: java.lang.RuntimeException: Duplicate class org.apache.http.Consts found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.ContentTooLongException found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.HttpConnectionFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.HttpHeaders found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.MessageConstraintException found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.TruncatedChunkException found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.GuardedBy found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.Immutable found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.NotThreadSafe found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.ThreadSafe found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.auth.AuthOption found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.AuthProtocolState found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.AuthSchemeProvider found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.ChallengeState found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.ContextAwareAuthScheme found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.AuthCache found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.AuthenticationStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.BackoffManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.ConnectionBackoffStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.RedirectStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.ServiceUnavailableRetryStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.AuthSchemes found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.CookieSpecs found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.RequestConfig found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.RequestConfig$Builder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DecompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DeflateDecompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DeflateInputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DeflateInputStream$DeflateStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.EntityBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.GzipCompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.GzipDecompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.LazyDecompressingInputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.AbstractExecutionAwareRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.AbstractExecutionAwareRequest$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.AbstractExecutionAwareRequest$2 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.CloseableHttpResponse found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.Configurable found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpExecutionAware found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpPatch found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpRequestWrapper found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpRequestWrapper$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpRequestWrapper$HttpEntityEnclosingRequestWrapper found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.RequestBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.RequestBuilder$InternalEntityEclosingRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.RequestBuilder$InternalRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.params.HttpClientParamConfig found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.HttpClientContext found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestAcceptEncoding found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestAuthCache found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestClientConnControl found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestExpectContinue found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.ResponseContentEncoding found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.DateUtils found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.DateUtils$DateFormatHolder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.DateUtils$DateFormatHolder$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.HttpClientUtils found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.Idn found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.JdkIdn found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.Punycode found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.Rfc3492Idn found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.URIBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.concurrent.BasicFuture found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.concurrent.Cancellable found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.concurrent.FutureCallback found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.ConnectionConfig found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.ConnectionConfig$Builder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.Lookup found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.MessageConstraints found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.MessageConstraints$Builder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.Registry found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.RegistryBuilder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.SocketConfig found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.SocketConfig$Builder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.conn.ConnectionRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.DnsResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpClientConnectionManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpConnectionFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpInetSocketAddress found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpRoutedConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ManagedHttpClientConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.SchemePortResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.UnsupportedSchemeException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.LayeredSchemeSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.LayeredSocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeLayeredSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeLayeredSocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeLayeredSocketFactoryAdaptor2 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeSocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.socket.ConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.socket.LayeredConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.socket.PlainConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.PrivateKeyDetails found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.PrivateKeyStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContextBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContextBuilder$KeyManagerDelegate found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContextBuilder$TrustManagerDelegate found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContexts found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLInitializationException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.TrustSelfSignedStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.TrustStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.cookie.CookieRestrictionViolationException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.cookie.CookieSpecProvider found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.entity.ContentType found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.BHttpConnectionBase found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.ConnSupport found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpClientConnection found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpClientConnectionFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpServerConnection found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpServerConnectionFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.auth.HttpAuthenticator found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.HttpAuthenticator$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.HttpEntityDigester found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$CipherGen found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$HMACMD5 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$MD4 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$NTLMMessage found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$Type1Message found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$Type2Message found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$Type3Message found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMSchemeFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.AIMDBackoffManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.AuthenticationStrategyImpl found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.BasicAuthCache found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.Clock found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.CloseableHttpClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.CloseableHttpResponseProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.DefaultBackoffStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.DefaultRedirectStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.DefaultServiceUnavailableRetryStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.FutureRequestExecutionMetrics found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.FutureRequestExecutionMetrics$DurationCounter found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.FutureRequestExecutionService found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpClientBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpClients found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpRequestFutureTask found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpRequestTaskCallable found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.InternalHttpClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.InternalHttpClient$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.LaxRedirectStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.MinimalHttpClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.MinimalHttpClient$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.NoopUserTokenHandler found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.NullBackoffStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.ProxyAuthenticationStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.ProxyClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.StandardHttpRequestRetryHandler found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.SystemClock found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.SystemDefaultCredentialsProvider found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.TargetAuthenticationStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.BasicHttpClientConnectionManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.BasicHttpClientConnectionManager$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.CPool found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.CPoolEntry found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.CPoolProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.ConnectionShutdownException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultHttpResponseParser found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultHttpResponseParserFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultManagedHttpClientConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultProxyRoutePlanner found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultRoutePlanner found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultSchemePortResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.HttpClientConnectionOperator found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.InMemoryDnsResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.LoggingInputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.LoggingManagedHttpClientConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.LoggingOutputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.ManagedHttpClientConnectionFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager$ConfigData found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager$InternalConnectionFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.SystemDefaultDnsResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.SystemDefaultRoutePlanner found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.SystemDefaultRoutePlanner$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.cookie.BrowserCompatVersionAttributeHandler found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.cookie.IgnoreSpec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.cookie.IgnoreSpecFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.entity.DisallowIdentityContentLengthStrategy found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.execchain.BackoffStrategyExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ClientExecChain found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ConnectionHolder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.HttpResponseProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.MainClientExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.MinimalClientExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ProtocolExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RedirectExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RequestAbortedException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RequestEntityProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ResponseEntityProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RetryExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ServiceUnavailableRetryExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.TunnelRefusedException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.io.DefaultHttpRequestParser found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpRequestParserFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpRequestWriter found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpRequestWriterFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseParser found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseParserFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseWriter found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseWriterFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.SessionInputBufferImpl found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.SessionOutputBufferImpl found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.pool.BasicConnFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.pool.BasicConnPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.pool.BasicPoolEntry found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.io.BufferInfo found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.io.HttpMessageParserFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.io.HttpMessageWriterFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.params.HttpParamConfig found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.params.HttpParamsNames found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$1 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$2 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$3 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$4 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.ConnFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.ConnPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.ConnPoolControl found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolEntry found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolEntryCallback found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolEntryFuture found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolStats found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.RouteSpecificPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.ChainBuilder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.HttpCoreContext found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.HttpProcessorBuilder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.HttpRequestHandlerMapper found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.ImmutableHttpProcessor found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.Args found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.Asserts found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.CharsetUtils found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.NetUtils found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.TextUtils found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2)
Go to the documentation to learn how to Fix dependency resolution errors. at java.util.concurrent.ForkJoinTask.get(ForkJoinTask.java:1006) at com.android.ide.common.workers.ExecutorServiceAdapter.await(ExecutorServiceAdapter.kt:102) at com.android.build.gradle.internal.tasks.CheckDuplicateClassesDelegate.run(CheckDuplicateClassesDelegate.kt:67) at com.android.build.gradle.internal.tasks.CheckDuplicateClassesTask.doTaskAction(CheckDuplicateClassesTask.kt:61) at com.android.build.gradle.internal.tasks.NonIncrementalTask$taskAction$$inlined$recordTaskAction$1.invoke(AndroidVariantTask.kt:51) at com.android.build.gradle.internal.tasks.NonIncrementalTask$taskAction$$inlined$recordTaskAction$1.invoke(AndroidVariantTask.kt:31) at com.android.build.gradle.internal.tasks.Blocks.recordSpan(Blocks.java:91) at com.android.build.gradle.internal.tasks.NonIncrementalTask.taskAction(NonIncrementalTask.kt:34) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:103) at org.gradle.api.internal.project.taskfactory.StandardTaskAction.doExecute(StandardTaskAction.java:48) at org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:41) at org.gradle.api.internal.project.taskfactory.StandardTaskAction.execute(StandardTaskAction.java:28) at org.gradle.api.internal.AbstractTask$TaskActionWrapper.execute(AbstractTask.java:702) at org.gradle.api.internal.AbstractTask$TaskActionWrapper.execute(AbstractTask.java:669) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter$5.run(ExecuteActionsTaskExecuter.java:404) at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:402) at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:394) at org.gradle.internal.operations.DefaultBuildOperationExecutor$1.execute(DefaultBuildOperationExecutor.java:165) at org.gradle.internal.operations.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:250) at org.gradle.internal.operations.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:158) at org.gradle.internal.operations.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:92) at org.gradle.internal.operations.DelegatingBuildOperationExecutor.run(DelegatingBuildOperationExecutor.java:31) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAction(ExecuteActionsTaskExecuter.java:393) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:376) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.access$200(ExecuteActionsTaskExecuter.java:80) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter$TaskExecution.execute(ExecuteActionsTaskExecuter.java:213) at org.gradle.internal.execution.steps.ExecuteStep.lambda$execute$1(ExecuteStep.java:33) at java.util.Optional.orElseGet(Optional.java:267) at org.gradle.internal.execution.steps.ExecuteStep.execute(ExecuteStep.java:33) at org.gradle.internal.execution.steps.ExecuteStep.execute(ExecuteStep.java:26) at org.gradle.internal.execution.steps.CleanupOutputsStep.execute(CleanupOutputsStep.java:58) at org.gradle.internal.execution.steps.CleanupOutputsStep.execute(CleanupOutputsStep.java:35) at org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:48) at org.gradle.internal.execution.steps.ResolveInputChangesStep.execute(ResolveInputChangesStep.java:33) at org.gradle.internal.execution.steps.CancelExecutionStep.execute(CancelExecutionStep.java:39) at org.gradle.internal.execution.steps.TimeoutStep.executeWithoutTimeout(TimeoutStep.java:73) at org.gradle.internal.execution.steps.TimeoutStep.execute(TimeoutStep.java:54) at org.gradle.internal.execution.steps.CatchExceptionStep.execute(CatchExceptionStep.java:35) at org.gradle.internal.execution.steps.CreateOutputsStep.execute(CreateOutputsStep.java:51) at org.gradle.internal.execution.steps.SnapshotOutputsStep.execute(SnapshotOutputsStep.java:45) at org.gradle.internal.execution.steps.SnapshotOutputsStep.execute(SnapshotOutputsStep.java:31) at org.gradle.internal.execution.steps.CacheStep.executeWithoutCache(CacheStep.java:201) at org.gradle.internal.execution.steps.CacheStep.execute(CacheStep.java:70) at org.gradle.internal.execution.steps.CacheStep.execute(CacheStep.java:45) at org.gradle.internal.execution.steps.BroadcastChangingOutputsStep.execute(BroadcastChangingOutputsStep.java:49) at org.gradle.internal.execution.steps.StoreSnapshotsStep.execute(StoreSnapshotsStep.java:43) at org.gradle.internal.execution.steps.StoreSnapshotsStep.execute(StoreSnapshotsStep.java:32) at org.gradle.internal.execution.steps.RecordOutputsStep.execute(RecordOutputsStep.java:38) at org.gradle.internal.execution.steps.RecordOutputsStep.execute(RecordOutputsStep.java:24) at org.gradle.internal.execution.steps.SkipUpToDateStep.executeBecause(SkipUpToDateStep.java:96) at org.gradle.internal.execution.steps.SkipUpToDateStep.lambda$execute$0(SkipUpToDateStep.java:89) at java.util.Optional.map(Optional.java:215) at org.gradle.internal.execution.steps.SkipUpToDateStep.execute(SkipUpToDateStep.java:54) at org.gradle.internal.execution.steps.SkipUpToDateStep.execute(SkipUpToDateStep.java:38) at org.gradle.internal.execution.steps.ResolveChangesStep.execute(ResolveChangesStep.java:77) at org.gradle.internal.execution.steps.ResolveChangesStep.execute(ResolveChangesStep.java:37) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep.execute(MarkSnapshottingInputsFinishedStep.java:36) at org.gradle.internal.execution.steps.legacy.MarkSnapshottingInputsFinishedStep.execute(MarkSnapshottingInputsFinishedStep.java:26) at org.gradle.internal.execution.steps.ResolveCachingStateStep.execute(ResolveCachingStateStep.java:90) at org.gradle.internal.execution.steps.ResolveCachingStateStep.execute(ResolveCachingStateStep.java:48) at org.gradle.internal.execution.impl.DefaultWorkExecutor.execute(DefaultWorkExecutor.java:33) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:120) at org.gradle.api.internal.tasks.execution.ResolveBeforeExecutionStateTaskExecuter.execute(ResolveBeforeExecutionStateTaskExecuter.java:75) at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:62) at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:108) at org.gradle.api.internal.tasks.execution.ResolveBeforeExecutionOutputsTaskExecuter.execute(ResolveBeforeExecutionOutputsTaskExecuter.java:67) at org.gradle.api.internal.tasks.execution.ResolveAfterPreviousExecutionStateTaskExecuter.execute(ResolveAfterPreviousExecutionStateTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.CleanupStaleOutputsExecuter.execute(CleanupStaleOutputsExecuter.java:94) at org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.ResolveTaskExecutionModeExecuter.execute(ResolveTaskExecutionModeExecuter.java:95) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:57) at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:56) at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:36) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.executeTask(EventFiringTaskExecuter.java:73) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:52) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter$1.call(EventFiringTaskExecuter.java:49) at org.gradle.internal.operations.DefaultBuildOperationExecutor$CallableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:416) at org.gradle.internal.operations.DefaultBuildOperationExecutor$CallableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:406) at org.gradle.internal.operations.DefaultBuildOperationExecutor$1.execute(DefaultBuildOperationExecutor.java:165) at org.gradle.internal.operations.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:250) at org.gradle.internal.operations.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:158) at org.gradle.internal.operations.DefaultBuildOperationExecutor.call(DefaultBuildOperationExecutor.java:102) at org.gradle.internal.operations.DelegatingBuildOperationExecutor.call(DelegatingBuildOperationExecutor.java:36) at org.gradle.api.internal.tasks.execution.EventFiringTaskExecuter.execute(EventFiringTaskExecuter.java:49) at org.gradle.execution.plan.LocalTaskNodeExecutor.execute(LocalTaskNodeExecutor.java:43) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:355) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$InvokeNodeExecutorsAction.execute(DefaultTaskExecutionGraph.java:343) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:336) at org.gradle.execution.taskgraph.DefaultTaskExecutionGraph$BuildOperationAwareExecutionAction.execute(DefaultTaskExecutionGraph.java:322) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker$1.execute(DefaultPlanExecutor.java:134) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker$1.execute(DefaultPlanExecutor.java:129) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.execute(DefaultPlanExecutor.java:202) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.executeNextNode(DefaultPlanExecutor.java:193) at org.gradle.execution.plan.DefaultPlanExecutor$ExecutorWorker.run(DefaultPlanExecutor.java:129) at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63) at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55) at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.RuntimeException: Duplicate class org.apache.http.Consts found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.ContentTooLongException found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.HttpConnectionFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.HttpHeaders found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.MessageConstraintException found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.TruncatedChunkException found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.GuardedBy found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.Immutable found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.NotThreadSafe found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.annotation.ThreadSafe found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.auth.AuthOption found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.AuthProtocolState found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.AuthSchemeProvider found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.ChallengeState found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.auth.ContextAwareAuthScheme found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.AuthCache found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.AuthenticationStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.BackoffManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.ConnectionBackoffStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.RedirectStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.ServiceUnavailableRetryStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.AuthSchemes found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.CookieSpecs found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.RequestConfig found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.config.RequestConfig$Builder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DecompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DeflateDecompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DeflateInputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.DeflateInputStream$DeflateStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.EntityBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.GzipCompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.GzipDecompressingEntity found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.entity.LazyDecompressingInputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.AbstractExecutionAwareRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.AbstractExecutionAwareRequest$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.AbstractExecutionAwareRequest$2 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.CloseableHttpResponse found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.Configurable found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpExecutionAware found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpPatch found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpRequestWrapper found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpRequestWrapper$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.HttpRequestWrapper$HttpEntityEnclosingRequestWrapper found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.RequestBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.RequestBuilder$InternalEntityEclosingRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.methods.RequestBuilder$InternalRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.params.HttpClientParamConfig found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.HttpClientContext found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestAcceptEncoding found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestAuthCache found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestClientConnControl found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.RequestExpectContinue found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.protocol.ResponseContentEncoding found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.DateUtils found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.DateUtils$DateFormatHolder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.DateUtils$DateFormatHolder$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.HttpClientUtils found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.Idn found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.JdkIdn found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.Punycode found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.Rfc3492Idn found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.client.utils.URIBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.concurrent.BasicFuture found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.concurrent.Cancellable found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.concurrent.FutureCallback found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.ConnectionConfig found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.ConnectionConfig$Builder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.Lookup found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.MessageConstraints found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.MessageConstraints$Builder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.Registry found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.RegistryBuilder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.SocketConfig found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.config.SocketConfig$Builder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.conn.ConnectionRequest found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.DnsResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpClientConnectionManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpConnectionFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpInetSocketAddress found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.HttpRoutedConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ManagedHttpClientConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.SchemePortResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.UnsupportedSchemeException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.LayeredSchemeSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.LayeredSocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeLayeredSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeLayeredSocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeLayeredSocketFactoryAdaptor2 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SchemeSocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.scheme.SocketFactoryAdaptor found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.socket.ConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.socket.LayeredConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.socket.PlainConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.PrivateKeyDetails found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.PrivateKeyStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLConnectionSocketFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContextBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContextBuilder$KeyManagerDelegate found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContextBuilder$TrustManagerDelegate found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLContexts found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.SSLInitializationException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.TrustSelfSignedStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.conn.ssl.TrustStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.cookie.CookieRestrictionViolationException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.cookie.CookieSpecProvider found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.entity.ContentType found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.BHttpConnectionBase found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.ConnSupport found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpClientConnection found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpClientConnectionFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpServerConnection found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.DefaultBHttpServerConnectionFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.auth.HttpAuthenticator found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.HttpAuthenticator$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.HttpEntityDigester found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$CipherGen found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$HMACMD5 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$MD4 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$NTLMMessage found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$Type1Message found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$Type2Message found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMEngineImpl$Type3Message found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.auth.NTLMSchemeFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.AIMDBackoffManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.AuthenticationStrategyImpl found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.BasicAuthCache found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.Clock found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.CloseableHttpClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.CloseableHttpResponseProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.DefaultBackoffStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.DefaultRedirectStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.DefaultServiceUnavailableRetryStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.FutureRequestExecutionMetrics found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.FutureRequestExecutionMetrics$DurationCounter found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.FutureRequestExecutionService found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpClientBuilder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpClients found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpRequestFutureTask found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.HttpRequestTaskCallable found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.InternalHttpClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.InternalHttpClient$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.LaxRedirectStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.MinimalHttpClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.MinimalHttpClient$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.NoopUserTokenHandler found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.NullBackoffStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.ProxyAuthenticationStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.ProxyClient found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.StandardHttpRequestRetryHandler found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.SystemClock found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.SystemDefaultCredentialsProvider found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.client.TargetAuthenticationStrategy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.BasicHttpClientConnectionManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.BasicHttpClientConnectionManager$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.CPool found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.CPoolEntry found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.CPoolProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.ConnectionShutdownException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultHttpResponseParser found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultHttpResponseParserFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultManagedHttpClientConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultProxyRoutePlanner found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultRoutePlanner found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.DefaultSchemePortResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.HttpClientConnectionOperator found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.InMemoryDnsResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.LoggingInputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.LoggingManagedHttpClientConnection found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.LoggingOutputStream found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.ManagedHttpClientConnectionFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager$ConfigData found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.PoolingHttpClientConnectionManager$InternalConnectionFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.SystemDefaultDnsResolver found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.SystemDefaultRoutePlanner found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.conn.SystemDefaultRoutePlanner$1 found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.cookie.BrowserCompatVersionAttributeHandler found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.cookie.IgnoreSpec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.cookie.IgnoreSpecFactory found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.entity.DisallowIdentityContentLengthStrategy found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.execchain.BackoffStrategyExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ClientExecChain found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ConnectionHolder found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.HttpResponseProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.MainClientExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.MinimalClientExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ProtocolExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RedirectExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RequestAbortedException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RequestEntityProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ResponseEntityProxy found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.RetryExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.ServiceUnavailableRetryExec found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.execchain.TunnelRefusedException found in modules httpclient-4.3.5.jar (org.apache.httpcomponents:httpclient:4.3.5) and httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) Duplicate class org.apache.http.impl.io.DefaultHttpRequestParser found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpRequestParserFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpRequestWriter found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpRequestWriterFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseParser found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseParserFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseWriter found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.DefaultHttpResponseWriterFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.SessionInputBufferImpl found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.io.SessionOutputBufferImpl found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.pool.BasicConnFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.pool.BasicConnPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.impl.pool.BasicPoolEntry found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.io.BufferInfo found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.io.HttpMessageParserFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.io.HttpMessageWriterFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.params.HttpParamConfig found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.params.HttpParamsNames found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$1 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$2 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$3 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.AbstractConnPool$4 found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.ConnFactory found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.ConnPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.ConnPoolControl found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolEntry found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolEntryCallback found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolEntryFuture found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.PoolStats found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.pool.RouteSpecificPool found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.ChainBuilder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.HttpCoreContext found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.HttpProcessorBuilder found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.HttpRequestHandlerMapper found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.protocol.ImmutableHttpProcessor found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.Args found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.Asserts found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.CharsetUtils found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.NetUtils found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2) Duplicate class org.apache.http.util.TextUtils found in modules httpclient-android-4.3.5.1.jar (org.apache.httpcomponents:httpclient-android:4.3.5.1) and httpcore-4.3.2.jar (org.apache.httpcomponents:httpcore:4.3.2)
Getting this error. How to resolve this?