I’m developing an app that will make extensive HTTP requests.
I know for a fact that iOS has a third-party library called ASIHTTPRequest to manage and organize all these requests, making it much easier and less tedious.
Is there a similar library available for Android?
According to this talk, if you’re targeting pre-Gingerbread versions (<2.3) you should stick to Apache Http Client library. If however you’re targeting Gingerbread or later, you will be safer to use the java.net.URLConneciton class as recommended by the Google engineer.