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
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Parse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,17 @@ android {

ext.okhttpVersion = '3.6.0'
dependencies {
compile 'com.android.support:support-annotations:25.3.1'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the support version we use should be an ext { } definition likely in the root build.gradle. this way the starter project that you updated can also just pull from this version

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good 👍

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