views:

28

answers:

1

At the moment I'm trying to build some integration tests for an android project. I would like to use the same apache http classes I use on the android. Which version is this and can I get a jar of that somewhere?

Trying to use the jar that comes with android only resolves in Exceptions... But most of the tests won't need running them in the emulator all the time just because I use some apache libraries or do they?

+1  A: 

You can get HttpClient from the HttpClient site. Generally speaking, Android uses a current-generation (i.e., 4.x) version of this library. However, there may not be a published JAR that matches the code Android is using.

CommonsWare