Skip to content

Commit

Permalink
Updated OKHttp3 to 3.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Cobbe committed Jan 10, 2017
1 parent 0ea7a24 commit 6ba8d5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ dependencies {

compileOnly 'javax.servlet:servlet-api:2.5'
compileOnly 'com.squareup.okhttp:okhttp:2.7.5' // support both v2 and v3 to avoid
compileOnly 'com.squareup.okhttp3:okhttp:3.3.1' // method count bloat
compileOnly 'com.squareup.okhttp3:okhttp:3.5.0' // method count bloat
compileOnly 'com.google.android:android:4.1.1.4'
compileOnly 'com.google.appengine:appengine-api-1.0-sdk:1.9.38'

Expand All @@ -90,7 +90,7 @@ dependencies {
testCompile 'com.google.appengine:appengine-api-stubs:1.9.38'
testCompile 'com.google.appengine:appengine-testing:1.9.38'
testCompile 'com.squareup.okhttp:okhttp:2.7.5'
testCompile 'com.squareup.okhttp3:okhttp:3.3.1'
testCompile 'com.squareup.okhttp3:okhttp:3.5.0'
testCompile 'com.google.guava:guava:19.0'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies {
// on master). Must use OkHttp v2 and v3 until new picasso release
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp:okhttp:2.7.5'
compile 'com.squareup.okhttp3:okhttp:3.3.1'
compile 'com.squareup.okhttp3:okhttp:3.5.0'
}

apply plugin: 'com.getkeepsafe.dexcount'
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-check
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ android_gradle assemble

# Run integration tests against major HTTP requestor implementations
for requestor in "StandardHttpRequestor" "OkHttpRequestor" "OkHttp3Requestor" ; do
gradle -Pcom.dropbox.test.httpRequestor="${requestor}" integrationTest proguardTest
gradle -Pcom.dropbox.test.httpRequestor="${requestor}" -Pcom.dropbox.test.authInfoFile="${AUTH_FILE}" integrationTest proguardTest
done

0 comments on commit 6ba8d5a

Please sign in to comment.