Exclude support jars from netcipher build

This commit is contained in:
Anthony Restaino 2015-05-02 14:57:12 -04:00
parent e40f1d44a5
commit db734dfa7d

View File

@ -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')