views:

238

answers:

2

I want to have a seperate project that runs my server communication code in a normal JVM for the purposes of integration testing. This code uses these libraries which are build into the Android Framework...

http://developer.android.com/reference/org/apache/http/client/package-summary.html

Does anybody know what version of Apache HTTP Client this is supposed to be? I want to run it without the Android tests which are painfully slow.

A: 

http://google.com/codesearch/p?hl=en#CskViEIa27Y/src/org/apache/http/client/HttpClient.java&sa=N&cd=1&ct=rc

/*
 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/HttpClient.java $
 * $Revision: 676020 $
 * $Date: 2008-07-11 09:38:49 -0700 (Fri, 11 Jul 2008) $
Jim Blackler
+1  A: 

4.x. I'm not sure on the minor version code, but the latest versions of httpmime and apache-mime4j work when included in my code alongside the HttpClient included in Android 1.5.

synic