ferpar1988
ferpar1988

Reputation: 606

HttpClient 4.3.3 on Android

I cannot use httpclient 4.3.3 libraries on Android. I tried to add jar files to libs folder but it still uses its own httpclient packages. They have both same package names. I think this is the problem.

Is there any solution for that?

Upvotes: 1

Views: 1181

Answers (2)

ok2c
ok2c

Reputation: 27518

Consider using the official Apache HttpClient 4.3 Android port

Upvotes: 0

CommonsWare
CommonsWare

Reputation: 1006529

I think this is the problem.

Yes, it is.

Is there any solution for that?

Use HttpUrlConnection. Or use OkHttp. Or see if jarjar can handle refactoring a library as large as HttpClient to a new package.

Upvotes: 2

Related Questions