From aa2bae7854aad514f789aa86593b17aec1367565 Mon Sep 17 00:00:00 2001 From: Ben Green Date: Wed, 22 Nov 2017 12:49:43 -0600 Subject: [PATCH] Add missing Test dependency Added junit dependency --- integration/ServiceTestRuleSample/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/integration/ServiceTestRuleSample/app/build.gradle b/integration/ServiceTestRuleSample/app/build.gradle index 40825f4bf..c23e59994 100644 --- a/integration/ServiceTestRuleSample/app/build.gradle +++ b/integration/ServiceTestRuleSample/app/build.gradle @@ -22,6 +22,7 @@ android { dependencies { // Testing-only dependencies // Force usage of support annotations in the test app, since it is internally used by the runner module. + androidTestCompile 'junit:junit:4.12' androidTestCompile 'com.android.support:support-annotations:' + rootProject.supportLibVersion; androidTestCompile 'com.android.support.test:runner:' + rootProject.runnerVersion; androidTestCompile 'com.android.support.test:rules:' + rootProject.rulesVersion;