Is this a good implementation of DefaultHttpClient and ThreadSafeClientConnManager in Android?
- by johnrock
In my Android app I am sharing one httpclient for all activities/threads. All requests are made by callling getHttpClient().execute(httpget) or getHttpClient().execute(httppost).
Is this implementation complete/correct and safe for multiple threads? Is there anything else missing i.e. Do I have to worry about releasing connections at all?
…