From c4f84bd0c9e53801a7977a9b2503bb25439f07a8 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Tue, 18 Apr 2023 15:01:52 +0530 Subject: [PATCH] Add missing dependencies for dummy tests We will have tests later on, add back missing dependencies for starters to fix broken project compilation Signed-off-by: Aayush Gupta --- app/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 3a154d8dd..7e9fcf616 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -52,6 +52,7 @@ android { vectorDrawables.useSupportLibrary = true multiDexEnabled true + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } signingConfigs { @@ -168,6 +169,11 @@ dependencies { //Love <3 api "com.gitlab.AuroraOSS:gplayapi:0e224071f3" + + //Test + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' } Properties props = new Properties()