Browse Source

Exclude support jars from netcipher build

master
Anthony Restaino 9 years ago
parent
commit
db734dfa7d
  1. 6
      app/build.gradle

6
app/build.gradle

@ -23,7 +23,11 @@ android { @@ -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')

Loading…
Cancel
Save