We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cd3b3a commit 224a488Copy full SHA for 224a488
1 file changed
build.gradle
@@ -70,7 +70,12 @@ ext {
70
}
71
72
dependencies {
73
- implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
+ // TODO remove direct dependency when OkHttp 4.12.0 is released
74
+ implementation ("com.squareup.okhttp3:okhttp:${okhttpVersion}") {
75
+ exclude group: 'com.squareup.okhttp3', module: 'okio'
76
+ }
77
+ implementation "com.squareup.okio:okio:3.5.0"
78
+
79
implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"
80
implementation "com.fasterxml.jackson.core:jackson-databind:2.14.2"
81
implementation "com.auth0:java-jwt:4.4.0"
0 commit comments