From 56dbbba67b7073643015eb8fa3de55d24bf4b58f Mon Sep 17 00:00:00 2001 From: Lachlan McKee Date: Sun, 7 Apr 2024 20:14:01 +0100 Subject: [PATCH] Fixed outstanding project health issues --- build.gradle.kts | 10 ---------- mvicore-demo/mvicore-demo-app/build.gradle.kts | 3 --- 2 files changed, 13 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 30db89c0..376b78e6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,16 +37,6 @@ dependencyAnalysis { onUnusedDependencies { severity("fail") exclude("com.jakewharton.scalpel:scalpel") // Accessed using reflection - - // AGP 8.0.2 seems to insist that an app module has these even if there are not tests - exclude("junit:junit") - exclude("androidx.test:runner") - } - } - project(":mvicore-android") { - onUnusedDependencies { - severity("fail") - exclude("androidx.test:runner") // Accessed using reflection } } } diff --git a/mvicore-demo/mvicore-demo-app/build.gradle.kts b/mvicore-demo/mvicore-demo-app/build.gradle.kts index 834ed027..84b89aa2 100644 --- a/mvicore-demo/mvicore-demo-app/build.gradle.kts +++ b/mvicore-demo/mvicore-demo-app/build.gradle.kts @@ -81,7 +81,4 @@ dependencies { implementation(libs.scalpel) implementation(libs.glide.runtime) kapt(libs.glide.compiler) - - androidTestImplementation(libs.junit4) - androidTestImplementation(libs.androidx.test.runner) }