From db734dfa7d193d03fbd70dd03ccfe1e5ae483fe2 Mon Sep 17 00:00:00 2001 From: Anthony Restaino Date: Sat, 2 May 2015 14:57:12 -0400 Subject: [PATCH] Exclude support jars from netcipher build --- app/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index a875445..2e51b88 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,7 +23,11 @@ android { } dependencies { - compile project(':libnetcipher') + compile(project(':libnetcipher')) { + // Exclude any support-v4 modules because appcompat-v7 will import the latest + exclude module:'support-v4' + exclude module:'android-support-v4' + } compile 'com.android.support:palette-v7:22.1.1' compile 'com.android.support:appcompat-v7:22.1.1' compile files('libs/jsoup-1.8.1.jar')