From 6e4d1980c70d2c31dc37a0d6ef25ffa2a11a571a Mon Sep 17 00:00:00 2001 From: Maxime Biais Date: Fri, 28 Aug 2015 10:46:34 +0200 Subject: [PATCH] set targetSdkVersion to 23 and clean up lib dependencies --- WordPressUtils/build.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/WordPressUtils/build.gradle b/WordPressUtils/build.gradle index 789d77b09a0e..4c77b82bc0e8 100644 --- a/WordPressUtils/build.gradle +++ b/WordPressUtils/build.gradle @@ -16,8 +16,10 @@ repositories { } dependencies { - compile 'commons-lang:commons-lang:2.6' - compile 'com.mcxiaoke.volley:library:1.0.10' + compile('commons-lang:commons-lang:2.6') { + exclude group: 'commons-logging' + } + compile 'com.mcxiaoke.volley:library:1.0.18' compile 'com.android.support:support-v13:23.0.0' } @@ -32,7 +34,7 @@ android { defaultConfig { versionName "1.5.0" minSdkVersion 14 - targetSdkVersion 22 + targetSdkVersion 23 } }