From 5dac28f882cdbd42b7eee8b27258bf2b63fd1c2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 5 Jun 2014 10:23:55 +0200 Subject: [PATCH] Make it explicit that we're using 1.6 Can be bumped to 1.7 if minsdk is bumped to 8 --- build.gradle | 5 +++++ project.properties | 2 ++ 2 files changed, 7 insertions(+) diff --git a/build.gradle b/build.gradle index 481041b70..2b2fb0754 100644 --- a/build.gradle +++ b/build.gradle @@ -77,6 +77,11 @@ android { compileSdkVersion 19 buildToolsVersion toolVersion + compileOptions { + sourceCompatibility = "1.6" + targetCompatibility = "1.6" + } + sourceSets { main { manifest.srcFile 'AndroidManifest.xml' diff --git a/project.properties b/project.properties index 41cb681d3..a9b6cb869 100644 --- a/project.properties +++ b/project.properties @@ -1,6 +1,8 @@ proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt target=android-19 +compile.source=1.6 +compile.target=1.6 android.library.reference.1=extern/UniversalImageLoader/library android.library.reference.2=extern/MemorizingTrustManager