blob: 3ad84fc6b3d6b60fb73b462fb59ae801de6a5fb4 [file] [log] [blame]
Tobias Thierer5be18512016-06-24 19:23:19 +01001URL: https://github.com/square/okhttp
2License: Apache 2
3Description: "OkHttp: An HTTP+SPDY client for Android and Java applications."
4
5Local patches
6-------------
7
8Addition 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
Tobias Thierercf362b82016-06-24 19:24:17 +010018All 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
Tobias Thierer5be18512016-06-24 19:23:19 +010024okio/ contains a snapshot of the Okio project. See okio/README.android for
25details.