Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/emptyflash/httpclientandroidlib

A mirror of https://code.google.com/p/httpclientandroidlib; an Android port of Apache's HttpComponents library (version 4.2.3)
https://github.com/emptyflash/httpclientandroidlib

Last synced: 2 days ago
JSON representation

A mirror of https://code.google.com/p/httpclientandroidlib; an Android port of Apache's HttpComponents library (version 4.2.3)

Awesome Lists containing this project

README

        

# HttpClientAndroidLib
A mirror of https://code.google.com/p/httpclientandroidlib by [Dirk Boye](https://github.com/dirkboye/);
an Android port of Apache's HttpComponents library (version 4.2.3).

The purpose of this project is to resolve issues in which Java projects that depend on Apache's HttpComponents
version 4.2.x do not work properly on Android. This library provides a solution to this (though it usually requires forking the
library you want to use and changing the code).

The reason for the mirror is to provide a Maven repo through jitpack.io.

##Usage
To get HttpClientAndroidLib as a dependency in your Maven project, first add the jitpack.io repo:
``` xml

jitpack.io
https://jitpack.io

```
Then add it to your dependencies:
``` xml

com.github.emptyflash
httpclientandroidlib
1.1.3
ant-jar

```

Then in your code, replace all occurences of `org.apache.http` with `ch.boye.httpclientandroidlib`