aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDavid T.H. Kao <dthkao@gmail.com>2018-06-20 12:36:47 -0700
committerGitHub <noreply@github.com>2018-06-20 12:36:47 -0700
commit97eedb039139d828e2066b42dc66437f17429b30 (patch)
tree1da2554693945b3f28e979550d2e31d68b741515 /examples
parent56a86a043b8ed30b86eb6a1f0d3cd56423cb6e31 (diff)
downloadmobly-snippet-lib-97eedb039139d828e2066b42dc66437f17429b30.tar.gz
Add missing snippetImplementation dep in gradle for ex2, and sort deps. (#96)
Diffstat (limited to 'examples')
-rw-r--r--examples/ex2_espresso/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ex2_espresso/build.gradle b/examples/ex2_espresso/build.gradle
index 845eeff..7de0a9f 100644
--- a/examples/ex2_espresso/build.gradle
+++ b/examples/ex2_espresso/build.gradle
@@ -39,7 +39,6 @@ dependencies {
// codebase.
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
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.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
@@ -50,6 +49,7 @@ dependencies {
//snippetCompile 'com.google.android.mobly:mobly-snippet-lib:1.3.0'
snippetImplementation project(':mobly-snippet-lib')
- snippetImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
snippetImplementation 'com.android.support:support-annotations:27.1.1'
+ snippetImplementation 'com.android.support.test:rules:1.0.2'
+ snippetImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}