Skip to content

Commit 6ba8d5a

Browse files
author
Stephen Cobbe
committed
Updated OKHttp3 to 3.5.0.
1 parent 0ea7a24 commit 6ba8d5a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ dependencies {
7777

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

@@ -90,7 +90,7 @@ dependencies {
9090
testCompile 'com.google.appengine:appengine-api-stubs:1.9.38'
9191
testCompile 'com.google.appengine:appengine-testing:1.9.38'
9292
testCompile 'com.squareup.okhttp:okhttp:2.7.5'
93-
testCompile 'com.squareup.okhttp3:okhttp:3.3.1'
93+
testCompile 'com.squareup.okhttp3:okhttp:3.5.0'
9494
testCompile 'com.google.guava:guava:19.0'
9595
}
9696

examples/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ dependencies {
6565
// on master). Must use OkHttp v2 and v3 until new picasso release
6666
compile 'com.squareup.picasso:picasso:2.5.2'
6767
compile 'com.squareup.okhttp:okhttp:2.7.5'
68-
compile 'com.squareup.okhttp3:okhttp:3.3.1'
68+
compile 'com.squareup.okhttp3:okhttp:3.5.0'
6969
}
7070

7171
apply plugin: 'com.getkeepsafe.dexcount'

scripts/release-check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ android_gradle assemble
8282

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

0 commit comments

Comments
 (0)