bickster
bickster

Reputation: 1290

Apache HttpClient 4.3 on Android 4.4

Has anyone gotten Apache HttpClient 4.3 working on Android 4.4? No mater what order I export the apache jars in eclipse the device uses the version of Apache HttpClient that comes with the Android SDK.

Upvotes: 5

Views: 1917

Answers (2)

Simon
Simon

Reputation: 19928

This is the gradle for the Apache HttpClient made for Android:

compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'

Upvotes: 0

ok2c
ok2c

Reputation: 27518

There will be an official re-spin of Apache HttpClient 4.3 at some point. In the meantime there is not much one can do about the problem other then repackaging the stock HttpClient with a different namespace.

Upvotes: 1

Related Questions