From 2b260d490c1d5656c75c8d13a1d4c8131dace715 Mon Sep 17 00:00:00 2001 From: Josh Guilfoyle Date: Tue, 24 Feb 2015 09:01:04 -0800 Subject: [PATCH] Avoid wildcard dependency in stetho-okhttp According to #59, it should be safe to just depend on 2.2.0 and ask the dependency resolver to figure it out. --- stetho-okhttp/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stetho-okhttp/build.gradle b/stetho-okhttp/build.gradle index 4d06ee1a..7980e771 100644 --- a/stetho-okhttp/build.gradle +++ b/stetho-okhttp/build.gradle @@ -25,8 +25,7 @@ apply plugin: 'android-unit-test' dependencies { compile project(':stetho') compile 'com.google.code.findbugs:jsr305:2.0.1' - //noinspection GradleDynamicVersion - compile 'com.squareup.okhttp:okhttp:[2,3)' + compile 'com.squareup.okhttp:okhttp:2.2.0' testCompile 'junit:junit:4.12' testCompile('org.robolectric:robolectric:2.4') {