Skip to content

Commit

Permalink
Update Okio to resolve CVE-2023-3635
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Sep 20, 2023
1 parent 3394283 commit 9f8a2e2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion auth0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,13 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.browser:browser:1.4.0'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"

// TODO remove direct dependency when OkHttp 4.12.0 is released
implementation ("com.squareup.okhttp3:okhttp:${okhttpVersion}") {
exclude group: 'com.squareup.okhttp3', module: 'okio'
}
implementation "com.squareup.okio:okio:3.5.0"

implementation "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.4.0'
Expand Down

0 comments on commit 9f8a2e2

Please sign in to comment.