summaryrefslogtreecommitdiff
path: root/core/build.gradle
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2014-11-12 18:46:36 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2014-11-12 18:46:36 +0100
commit7127277626c6b842fe64c2fc4abd0c5bf74dc0f6 (patch)
treeb61e25fd34508869ed2de0cb13a609e3417981b3 /core/build.gradle
parent976df32caee6b2407b0ec182d55ffe36418da0c6 (diff)
downloadAntennaPod-7127277626c6b842fe64c2fc4abd0c5bf74dc0f6.zip
Squashed commit of the following:
commit 8ab8f77557a98adad56006e6d372d8f348191742 Author: daniel oeh <daniel.oeh@gmail.com> Date: Wed Nov 12 16:05:32 2014 +0100 Use OkHttp instead of HttpClient in HttpDownloader - Adds support for SNI -> fixes #354 - fixes #548 commit 38278bc72abcdc190d44f26593f6efdd2b390877 Author: daniel oeh <daniel.oeh@gmail.com> Date: Wed Nov 12 15:04:32 2014 +0100 Use OkHttp instead of HttpClient in GpodnetService
Diffstat (limited to 'core/build.gradle')
-rw-r--r--core/build.gradle14
1 files changed, 10 insertions, 4 deletions
diff --git a/core/build.gradle b/core/build.gradle
index 6949fd4ad..bd3720dbf 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -22,6 +22,12 @@ android {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+
}
dependencies {
@@ -39,7 +45,7 @@ dependencies {
compile 'com.jayway.android.robotium:robotium-solo:5.2.1'
compile 'org.jsoup:jsoup:1.7.3'
compile 'com.squareup.picasso:picasso:2.4.0'
- compile 'com.squareup.okhttp:okhttp:2.0.0'
- compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
- compile 'com.squareup.okio:okio:1.0.0'
-}
+ compile 'com.squareup.okhttp:okhttp:2.1.0'
+ compile 'com.squareup.okhttp:okhttp-urlconnection:2.1.0'
+ compile 'com.squareup.okio:okio:1.0.1'
+} \ No newline at end of file