Skip to content

OkHttp Builder Exposed for REST and AWS #628

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Apr 11, 2017
12 changes: 10 additions & 2 deletions Parse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,22 @@ android {
}
}

ext.okhttpVersion = '3.6.0'
ext {
okhttpVersion = '3.6.0'
}

dependencies {
compile "com.android.support:support-annotations:$supportLibVersion"
compile 'com.parse.bolts:bolts-tasks:1.4.0'
compile "com.squareup.okhttp3:okhttp:$okhttpVersion"
provided 'com.facebook.stetho:stetho:1.4.2'

//Be aware, tests fail on 3.3.2 Wait to update until
//java.lang.NoClassDefFoundError: android/content/pm/VersionedPackage
//issue is fixed in Robolectric
//https://github.com/robolectric/robolectric/issues/2562
testCompile 'org.robolectric:robolectric:3.3'
testCompile 'org.skyscreamer:jsonassert:1.4.0'
testCompile 'org.skyscreamer:jsonassert:1.5.0'
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile "com.squareup.okhttp3:mockwebserver:$okhttpVersion"
}
Expand Down
Loading