Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.buildscript/ | 05-Oct-2017 | ||
.gitignore | 05-Oct-2017 | 150 | |
.gitmodules | 05-Oct-2017 | 180 | |
.travis.yml | 05-Oct-2017 | 616 | |
android/ | 05-Oct-2017 | ||
Android.mk | 05-Oct-2017 | 4.3K | |
benchmarks/ | 05-Oct-2017 | ||
BUG-BOUNTY.md | 05-Oct-2017 | 364 | |
CHANGELOG.md | 05-Oct-2017 | 32.9K | |
checkstyle.xml | 05-Oct-2017 | 4.7K | |
CONTRIBUTING.md | 05-Oct-2017 | 732 | |
deploy_website.sh | 05-Oct-2017 | 684 | |
jarjar-rules.txt | 05-Oct-2017 | 76 | |
LICENSE.txt | 05-Oct-2017 | 11.1K | |
mockwebserver/ | 05-Oct-2017 | ||
MODULE_LICENSE_APACHE2 | 05-Oct-2017 | 0 | |
okcurl/ | 05-Oct-2017 | ||
okhttp/ | 05-Oct-2017 | ||
okhttp-android-support/ | 05-Oct-2017 | ||
okhttp-apache/ | 05-Oct-2017 | ||
okhttp-hpacktests/ | 05-Oct-2017 | ||
okhttp-logging-interceptor/ | 05-Oct-2017 | ||
okhttp-testing-support/ | 05-Oct-2017 | ||
okhttp-tests/ | 05-Oct-2017 | ||
okhttp-urlconnection/ | 05-Oct-2017 | ||
okhttp-ws/ | 05-Oct-2017 | ||
okhttp-ws-tests/ | 05-Oct-2017 | ||
okio/ | 05-Oct-2017 | ||
pom.xml | 05-Oct-2017 | 9.2K | |
README.android | 05-Oct-2017 | 1.1K | |
README.md | 05-Oct-2017 | 1.9K | |
samples/ | 05-Oct-2017 | ||
website/ | 05-Oct-2017 |
1 URL: https://github.com/square/okhttp 2 License: Apache 2 3 Description: "OkHttp: An HTTP+SPDY client for Android and Java applications." 4 5 Local patches 6 ------------- 7 8 Addition of classes in android/ : 9 - com.squareup.okhttp.internal.Platform - to replace the Platform class that 10 comes with okhttp. Avoids use of reflection where possible. 11 - com.squareup.okhttp.Http(s)Handler - integration with Android's corelibs. 12 - com.squareup.okhttp.ConfigAwareConnectionPool - support for a 13 ConnectionPool that listens for network configuration changes. 14 - com.squareup.okhttp.internal.Version - a hand-crafted version of 15 okhttp/src/main/java-templates/com/squareup/okhttp/internal/Version.java 16 for Android. 17 18 All source changes (besides imports) marked with ANDROID-BEGIN and ANDROID-END: 19 - Commenting of code that references APIs not present on Android. 20 - @Ignore or comment out tests for functionality not supported on Android. 21 - Work around JUnit 4.11 not being available on Android by adding a 22 assertNotEquals() method to affect tests. 23 24 okio/ contains a snapshot of the Okio project. See okio/README.android for 25 details. 26
1 OkHttp 2 ====== 3 4 An HTTP & SPDY client for Android and Java applications. For more information see [the website][1] and [the wiki][2]. 5 6 Download 7 -------- 8 9 Download [the latest JAR][3] or grab via Maven: 10 ```xml 11 <dependency> 12 <groupId>com.squareup.okhttp</groupId> 13 <artifactId>okhttp</artifactId> 14 <version>2.6.0</version> 15 </dependency> 16 ``` 17 or Gradle: 18 ```groovy 19 compile 'com.squareup.okhttp:okhttp:2.6.0' 20 ``` 21 22 Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. 23 24 25 MockWebServer 26 ------------- 27 28 A library for testing HTTP, HTTPS, HTTP/2.0, and SPDY clients. 29 30 MockWebServer coupling with OkHttp is essential for proper testing of SPDY and HTTP/2.0 so that code can be shared. 31 32 ### Download 33 34 Download [the latest JAR][4] or grab via Maven: 35 ```xml 36 <dependency> 37 <groupId>com.squareup.okhttp</groupId> 38 <artifactId>mockwebserver</artifactId> 39 <version>2.6.0</version> 40 <scope>test</scope> 41 </dependency> 42 ``` 43 or Gradle: 44 ```groovy 45 testCompile 'com.squareup.okhttp:mockwebserver:2.6.0' 46 ``` 47 48 49 50 License 51 ------- 52 53 Licensed under the Apache License, Version 2.0 (the "License"); 54 you may not use this file except in compliance with the License. 55 You may obtain a copy of the License at 56 57 http://www.apache.org/licenses/LICENSE-2.0 58 59 Unless required by applicable law or agreed to in writing, software 60 distributed under the License is distributed on an "AS IS" BASIS, 61 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 62 See the License for the specific language governing permissions and 63 limitations under the License. 64 65 66 [1]: http://square.github.io/okhttp 67 [2]: https://github.com/square/okhttp/wiki 68 [3]: https://search.maven.org/remote_content?g=com.squareup.okhttp&a=okhttp&v=LATEST 69 [4]: https://search.maven.org/remote_content?g=com.squareup.okhttp&a=mockwebserver&v=LATEST 70 [snap]: https://oss.sonatype.org/content/repositories/snapshots/ 71