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: 5 months ago
JSON representation
A mirror of https://code.google.com/p/httpclientandroidlib; an Android port of Apache's HttpComponents library (version 4.2.3)
- Host: GitHub
- URL: https://github.com/emptyflash/httpclientandroidlib
- Owner: emptyflash
- Created: 2015-09-20T14:17:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-01T14:58:43.000Z (over 10 years ago)
- Last Synced: 2025-02-15T21:20:53.035Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 615 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`