Created
August 3, 2020 14:18
-
-
Save enginebai/3e8c77cb805ad79853e1da44518736be to your computer and use it in GitHub Desktop.
MovieHunt blog part2. okhttp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val builder = OkHttpClient.Builder() | |
builder.protocols(listOf(Protocol.HTTP_1_1, Protocol.HTTP_2)) | |
// TODO: set timeout, cache...etc. | |
val httpClient = builder.build() | |
Retrofit.Builder() | |
…(略) | |
.client(httpClient) // 加到 Retrofit | |
.build() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment