Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
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