Update build.gradle okhttp dependency #55434
Merged
BrennanConroy merged 1 commit intodotnet:mainfrom Apr 30, 2024
Haidar0096:patch-1
Merged
Update build.gradle okhttp dependency #55434BrennanConroy merged 1 commit intodotnet:mainfrom Haidar0096:patch-1
BrennanConroy merged 1 commit intodotnet:mainfrom
Haidar0096:patch-1
Conversation
Updated okhttp version to 4.12 because when using this library on android and building in release mode with the latest android gradle plugin, we get errors from the R8 shrinker saying that some classes are missing. here is the generated list from the R8 shrinker: ``` # Please add these rules to your existing keep rules in order to suppress warnings. #-dontwarn org.bouncycastle.jsse.BCSSLParameters #-dontwarn org.bouncycastle.jsse.BCSSLSocket #-dontwarn org.bouncycastle.jsse.provider.BouncyCastleJsseProvider #-dontwarn org.conscrypt.Conscrypt$Version #-dontwarn org.conscrypt.Conscrypt #-dontwarn org.conscrypt.ConscryptHostnameVerifier #-dontwarn org.openjsse.javax.net.ssl.SSLParameters #-dontwarn org.openjsse.javax.net.ssl.SSLSocket #-dontwarn org.openjsse.net.ssl.OpenJSSE ```
BrennanConroy
approved these changes
Apr 30, 2024
wtgodbe
pushed a commit
that referenced
this pull request
Jan 8, 2026
wtgodbe
added a commit
that referenced
this pull request
Jan 9, 2026
* Update gradle * update jdk * not specific ex * fixup * fixup * Use dnceng AzDO feed for maven (#64962) * Use dnceng AzDO feed for maven This fixes CFSClean errors. * Upgrade spotless-plugin-gradle to fix error with latest gradle --------- Co-authored-by: William Godbe <wigodbe@microsoft.com> * Bump gson * Update okhttp to 4.12 (#55434) --------- Co-authored-by: Brennan Conroy <brecon@microsoft.com> Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com> Co-authored-by: William Godbe <wigodbe@microsoft.com> Co-authored-by: Haidar <49842031+Haidar0096@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated okhttp version to 4.12 because when using this library on android and building in release mode with the latest android gradle plugin, we get errors from the R8 shrinker saying that some classes are missing. here is the generated list from the R8 shrinker:
Updating okhttp version
Description
See above