Skip to content

Instantly share code, notes, and snippets.

@eoinahern
Created October 13, 2017 13:04
Show Gist options
  • Save eoinahern/c9f1173ea080b3e00c7edd5554d52092 to your computer and use it in GitHub Desktop.
Save eoinahern/c9f1173ea080b3e00c7edd5554d52092 to your computer and use it in GitHub Desktop.
exclude a module
//excluding a module!
androidTestCompile ("com.android.support.test.espresso:espresso-core:$rootProject.espressoVersion") {
exclude group: 'com.google.code.findbugs', module:'jsr305'
}
androidTestCompile ("com.android.support.test.espresso:espresso-contrib:$rootProject.espressoVersion") {
exclude group: 'com.google.code.findbugs', module:'jsr305'
}
androidTestCompile ("com.android.support.test.espresso:espresso-intents:$rootProject.espressoVersion") {
exclude group: 'com.google.code.findbugs', module:'jsr305'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment