commit | 7c1c907bb6610a3efcf7d6c6936289961896efe0 | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Mon Mar 30 17:25:34 2015 -0700 |
committer | Colin Cross <ccross@android.com> | Mon Mar 30 17:25:34 2015 -0700 |
tree | 32b4bbe21a10d69cdbd0502137f4515f9b73f241 | |
parent | 56d34066c10aec853a2629b9ad09d48e43e11e42 [diff] |
Remove -encoding UTF-8, it is now the default Change-Id: I472e45c54a4a06bc5da786615fd2c56ae2b63fcd
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.2.0</version> </dependency>
or Gradle:
compile 'com.squareup.okhttp:okhttp:2.2.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.2.0</version> <scope>test</scope> </dependency>
or Gradle:
testCompile 'com.squareup.okhttp:mockwebserver:2.2.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.