Skip to content

Commit

Permalink
build.gradle: Use global excludes for artifacts we really don't want …
Browse files Browse the repository at this point in the history
…in our APK.
  • Loading branch information
Andreas Schildbach committed Apr 15, 2018
1 parent 1e61c16 commit 3dbd1ee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sample-integration-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
apply plugin: 'com.android.application'

configurations {
all*.exclude group: 'com.google.android', module: 'android'
}

dependencies {
compile(project(':integration-android')) {
exclude(group: 'com.google.android', module: 'android')
}
compile project(':integration-android')
compile 'org.bitcoinj:bitcoinj-core:0.12.3'
}

Expand Down

0 comments on commit 3dbd1ee

Please sign in to comment.