From 67a8826d247d1eaf34d1186a2684bf04cd4925f7 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 11 Sep 2020 23:10:58 +0530 Subject: [PATCH] build: remove unnecessary deps Signed-off-by: Harsh Shandilya --- app/build.gradle | 6 +----- data/build.gradle | 8 -------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 63346907..c39947a6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,9 +15,7 @@ android { } } - buildFeatures { - compose true - } + buildFeatures.compose = true composeOptions { kotlinCompilerVersion "${kotlin_version}" @@ -49,7 +47,5 @@ dependencies { implementation "androidx.ui:ui-tooling:$compose_version" implementation 'com.google.android.material:material:1.3.0-alpha02' testImplementation 'junit:junit:4.13' - androidTestImplementation 'androidx.test.ext:junit:1.1.2' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' androidTestImplementation "androidx.ui:ui-test:$compose_version" } diff --git a/data/build.gradle b/data/build.gradle index 11bae882..066766aa 100644 --- a/data/build.gradle +++ b/data/build.gradle @@ -4,11 +4,6 @@ plugins { } android { - - defaultConfig { - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - } - compileOptions { coreLibraryDesugaringEnabled true } @@ -18,8 +13,5 @@ dependencies { kapt "androidx.room:room-compiler:$room_version" api "androidx.room:room-runtime:$room_version" api "androidx.room:room-ktx:$room_version" - testImplementation 'junit:junit:4.13' - androidTestImplementation 'androidx.test.ext:junit:1.1.2' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.0.10" }