commit | 36132b3cd2c814e057c775adc821ae0fb12aeb4c | [log] [tgz] |
---|---|---|
author | Neil Fuller <nfuller@google.com> | Thu Aug 27 12:57:47 2015 +0100 |
committer | Neil Fuller <nfuller@google.com> | Thu Sep 17 17:13:02 2015 +0100 |
tree | 54ba26e855192f6697902bad35e92d6973c6648b | |
parent | 71b9f47b26fb57ac3e436a19519c6e3ec70e86eb [diff] |
Android modifications to OkHttp Re-introduce Android integration classes and make the modifications necessary to get OkHttp/Okio to compile against Android. The only Android-specific change made over prior versions of this code is in Platform to remove the toURILenient() method (no longer used by OkHttp). This commit also includes pending PR https://github.com/square/okhttp/pull/1858 to fix two tests on Android: com.squareup.okhttp.URLConnectionTest#connectViaHttpsWithSSLFallback com.squareup.okhttp.CallTest#recoverFromTlsHandshakeFailure_Async Bug: 22943975 Bug: 23553256 Change-Id: I4c718c96fbd5fe3f2353ce422f8de3b95d0b75ee
An HTTP & SPDY client for Android and Java applications. For more information see the website and the wiki.
Download the latest JAR or grab via Maven:
<dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> <version>2.5.0</version> </dependency>
or Gradle:
compile 'com.squareup.okhttp:okhttp:2.5.0'
Snapshots of the development version are available in Sonatype's snapshots
repository.
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 the latest JAR or grab via Maven:
<dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>mockwebserver</artifactId> <version>2.5.0</version> <scope>test</scope> </dependency>
or Gradle:
testCompile 'com.squareup.okhttp:mockwebserver:2.5.0'
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.