No description
  • Java 99.5%
  • HTML 0.3%
  • Shell 0.1%
Find a file
Android Build Coastguard Worker 1c86936b69 Merge cherrypicks of [17823868] into security-aosp-qt-release.
Change-Id: I4c7d068907b3896a9a607145d131068acbbf3e17
2022-05-13 20:37:40 +00:00
.buildscript Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
android/src Small updates to OkHttp-Conscrypt interaction 2019-03-26 14:48:57 +00:00
benchmarks Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
mockwebserver Relax test constraint for disconnected HttpURLConnection. 2019-03-01 16:39:48 +00:00
okcurl Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
okhttp [DO NOT MERGE] Reject non-ASCII hostnames and SANs. 2020-12-09 15:54:21 -08:00
okhttp-android-support Create a full facade over okhttp 2018-07-17 10:27:33 +01:00
okhttp-apache Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
okhttp-hpacktests Remove all submodules. 2018-09-27 09:55:35 -07:00
okhttp-logging-interceptor Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
okhttp-testing-support Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
okhttp-tests [DO NOT MERGE] Reject non-ASCII hostnames and SANs. 2020-12-09 15:54:21 -08:00
okhttp-urlconnection Let HttpsURLConnection.setSSLSocketFactory(null) throw IAE. 2018-08-17 18:51:09 -07:00
okhttp-ws Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
okhttp-ws-tests Remove assertNotEquals related patches 2018-11-13 16:17:05 +00:00
okio Merge changes from topic \'okhttp2-upgrade\' 2016-06-30 12:48:46 +00:00
repackaged [DO NOT MERGE] Update external/okhttp/repackaged to match source. 2022-05-13 20:36:54 +00:00
samples Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
srcgen Use tools/currysrc/scripts/repackage-common.sh 2019-03-14 11:14:08 +00:00
website Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
.gitignore Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
.travis.yml Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
Android.bp Use public API for Conscrypt features 2019-03-22 13:28:08 +00:00
BUG-BOUNTY.md Pull latest code from upstream okhttp and okio 2015-09-17 09:28:41 +01:00
CHANGELOG.md Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
checkstyle.xml Rollup of upstream OkHttp and Okio changes 2015-05-07 13:20:40 +01:00
CONTRIBUTING.md Update okhttp to the latest version. 2012-11-09 11:17:51 +00:00
deploy_website.sh Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
LICENSE.txt Initial checkin for okhttp. 2012-08-09 12:11:46 +01:00
MODULE_LICENSE_APACHE2 Initial checkin for okhttp. 2012-08-09 12:11:46 +01:00
OWNERS add OWNERS to okhttp 2017-04-17 10:41:20 -07:00
pom.xml Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00
README.android Remove assertNotEquals related patches 2018-11-13 16:17:05 +00:00
README.md Update OkHttp to 2.7.5 and advance okio by one commit. 2016-06-29 16:23:09 +01:00

OkHttp

An HTTP & SPDY client for Android and Java applications. For more information see the website and the wiki.

Download

Download the latest JAR or grab via Maven:

<dependency>
  <groupId>com.squareup.okhttp</groupId>
  <artifactId>okhttp</artifactId>
  <version>2.6.0</version>
</dependency>

or Gradle:

compile 'com.squareup.okhttp:okhttp:2.6.0'

Snapshots of the development version are available in Sonatype's snapshots repository.

MockWebServer

A library for testing HTTP, HTTPS, HTTP/2.0, and SPDY clients.

MockWebServer coupling with OkHttp is essential for proper testing of SPDY and HTTP/2.0 so that code can be shared.

Download

Download the latest JAR or grab via Maven:

<dependency>
  <groupId>com.squareup.okhttp</groupId>
  <artifactId>mockwebserver</artifactId>
  <version>2.6.0</version>
  <scope>test</scope>
</dependency>

or Gradle:

testCompile 'com.squareup.okhttp:mockwebserver:2.6.0'

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.