Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/emptyflash/httpclientandroidlib
- Owner: emptyflash
- Created: 2015-09-20T14:17:27.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-01T14:58:43.000Z (almost 9 years ago)
- Last Synced: 2023-04-01T08:35:12.832Z (over 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:
``` xmljitpack.io
https://jitpack.io```
Then add it to your dependencies:
``` xmlcom.github.emptyflash
httpclientandroidlib
1.1.3
ant-jar```
Then in your code, replace all occurences of `org.apache.http` with `ch.boye.httpclientandroidlib`