From b00ee9be46f053157d3d88577dd137998a11ca05 Mon Sep 17 00:00:00 2001 From: Isaac Hutt Date: Sun, 10 Feb 2019 14:49:58 +0000 Subject: [PATCH] Revert back to old test runner --- app/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 8a2bcc725..0d6628855 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -66,6 +66,7 @@ dependencies { androidTestImplementation "androidx.annotation:annotation:$annotationVersion" androidTestImplementation "androidx.test.ext:junit:1.1.0" + androidTestImplementation 'androidx.test:runner:1.1.1' androidTestImplementation 'androidx.test:rules:1.1.1' androidTestImplementation 'androidx.test:core:1.1.0' @@ -164,7 +165,7 @@ android { defaultConfig { minSdkVersion 14 targetSdkVersion 28 - testInstrumentationRunner "androidx.test.ext.runner.AndroidJUnitRunner" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" // See https://github.com/linkedin/dexmaker/issues/65 for why we need the following line. testInstrumentationRunnerArguments.notClass = 'com.android.dex.DexIndexOverflowException' multiDexEnabled true @@ -381,6 +382,6 @@ testdroid { testRunName "Auto Test " + buildNumber fullRunConfig { - instrumentationRunner = "androidx.test.ext.runner.AndroidJUnitRunner" + instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } }