From 06b839d14fbb2b99b759926b79fbc8db62d1b686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Wed, 1 Jul 2020 22:03:41 +0200 Subject: [PATCH] Fix test and androidTest dependencies --- app/build.gradle | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index b884a8558..bb437c6f8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -167,17 +167,17 @@ dependencies { fullImplementation 'org.jmdns:jmdns:3.5.5' fullImplementation 'org.nanohttpd:nanohttpd:2.3.1' - testImplementation 'org.robolectric:robolectric:4.3' - testImplementation 'junit:junit:4.12' - testImplementation 'org.bouncycastle:bcprov-jdk15on:1.60' - testImplementation 'org.mockito:mockito-core:2.7.22' - testImplementation 'androidx.test:core:1.2.0' - testImplementation 'androidx.test:runner:1.2.0' - testImplementation 'androidx.test:rules:1.2.0' - testImplementation 'androidx.test:monitor:1.2.0' - testImplementation 'androidx.test.ext:junit:1.1.1' + testImplementation 'junit:junit:4.13' + testImplementation 'org.robolectric:robolectric:4.3' + testImplementation 'org.mockito:mockito-core:3.3.3' + testImplementation 'org.bouncycastle:bcprov-jdk15on:1.60' + androidTestImplementation 'androidx.test:core:1.2.0' + androidTestImplementation 'androidx.test:runner:1.2.0' + androidTestImplementation 'androidx.test:rules:1.2.0' + androidTestImplementation 'androidx.test:monitor:1.2.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0' }