├── .gitignore ├── LICENSE ├── README.md └── doc ├── HttpContentType.md ├── HttpHeader.md ├── HttpRequestMethod.md └── HttpStatusCode.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/README.md -------------------------------------------------------------------------------- /doc/HttpContentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/doc/HttpContentType.md -------------------------------------------------------------------------------- /doc/HttpHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/doc/HttpHeader.md -------------------------------------------------------------------------------- /doc/HttpRequestMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/doc/HttpRequestMethod.md -------------------------------------------------------------------------------- /doc/HttpStatusCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getActivity/AndroidIndex/HEAD/doc/HttpStatusCode.md --------------------------------------------------------------------------------