Skip to content

Commit

Permalink
Isolate support libs in test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Sep 10, 2018
1 parent 739de03 commit 3dcb4a9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions AnkiDroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,14 @@ dependencies {
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'

androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2') {
exclude group: 'com.android.support'
}
androidTestImplementation('com.android.support.test:runner:1.0.2') {
exclude group: 'com.android.support'
}
androidTestImplementation('com.android.support.test:rules:1.0.2') {
exclude group: 'com.android.support'
}
androidTestUtil 'com.android.support.test:orchestrator:1.0.2'
}

0 comments on commit 3dcb4a9

Please # to comment.