Retrofit 1 OkHttp 3 Client

A OkHttp 3 client implementation for Retrofit 1.

License

License

Categories

Categories

CLI User Interface Retrofit Net HTTP Clients
GroupId

GroupId

com.jakewharton.retrofit
ArtifactId

ArtifactId

retrofit1-okhttp3-client
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

Retrofit 1 OkHttp 3 Client
A OkHttp 3 client implementation for Retrofit 1.
Source Code Management

Source Code Management

http://github.com/JakeWharton/retrofit1-okhttp3-client

Download retrofit1-okhttp3-client

How to add to project

<!-- https://jarcasting.com/artifacts/com.jakewharton.retrofit/retrofit1-okhttp3-client/ -->
<dependency>
    <groupId>com.jakewharton.retrofit</groupId>
    <artifactId>retrofit1-okhttp3-client</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.jakewharton.retrofit/retrofit1-okhttp3-client/
implementation 'com.jakewharton.retrofit:retrofit1-okhttp3-client:1.1.0'
// https://jarcasting.com/artifacts/com.jakewharton.retrofit/retrofit1-okhttp3-client/
implementation ("com.jakewharton.retrofit:retrofit1-okhttp3-client:1.1.0")
'com.jakewharton.retrofit:retrofit1-okhttp3-client:jar:1.1.0'
<dependency org="com.jakewharton.retrofit" name="retrofit1-okhttp3-client" rev="1.1.0">
  <artifact name="retrofit1-okhttp3-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.jakewharton.retrofit', module='retrofit1-okhttp3-client', version='1.1.0')
)
libraryDependencies += "com.jakewharton.retrofit" % "retrofit1-okhttp3-client" % "1.1.0"
[com.jakewharton.retrofit/retrofit1-okhttp3-client "1.1.0"]

Dependencies

compile (2)

Group / Artifact Type Version
com.squareup.retrofit : retrofit jar 1.9.0
com.squareup.okhttp3 : okhttp jar 3.2.0

test (3)

Group / Artifact Type Version
junit : junit jar 4.12
com.squareup.okhttp3 : mockwebserver jar 3.2.0
com.google.truth : truth jar 0.28

Project Modules

There are no modules declared in this project.

Retrofit 1 OkHttp 3 Client

A OkHttp 3 client implementation for Retrofit 1.

Usage

Create an instance of Ok3Client wrapping your OkHttpClient or Call.Factory and pass it to setClient.

OkHttpClient client = // ...
RestAdapter restAdapter = new RestAdapter.Builder()
    .setClient(new Ok3Client(client))
    .setEndpoint(..)
    .build()

You can also use the no-arg constructor for a default OkHttpClient instance.

Download

Gradle:

compile 'com.jakewharton.retrofit:retrofit1-okhttp3-client:1.1.0'

or Maven:

<dependency>
  <groupId>com.jakewharton.retrofit</groupId>
  <artifactId>retrofit1-okhttp3-client</artifactId>
  <version>1.1.0</version>
</dependency>

License

Copyright 2016 Jake Wharton

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.

Versions

Version
1.1.0
1.0.2
1.0.1
1.0.0