Retrofit 1 OkHttp 3 Client

A OkHttp 3 client implementation for Retrofit 1.

Лицензия

Лицензия

Категории

Категории

CLI Взаимодействие с пользователем Retrofit Сеть HTTP Clients
Группа

Группа

com.jakewharton.retrofit
Идентификатор

Идентификатор

retrofit1-okhttp3-client
Последняя версия

Последняя версия

1.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

Retrofit 1 OkHttp 3 Client
A OkHttp 3 client implementation for Retrofit 1.
Система контроля версий

Система контроля версий

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

Скачать retrofit1-okhttp3-client

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
com.squareup.retrofit : retrofit jar 1.9.0
com.squareup.okhttp3 : okhttp jar 3.2.0

test (3)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
com.squareup.okhttp3 : mockwebserver jar 3.2.0
com.google.truth : truth jar 0.28

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
1.1.0
1.0.2
1.0.1
1.0.0