From 980a8402259fb649779634b6181dc00e9ef3af05 Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sat, 11 Feb 2023 12:20:53 +0000 Subject: [PATCH] ui-test-hilt-manifest uses `nowinandroid.android.hilt` plugin --- ui-test-hilt-manifest/build.gradle.kts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ui-test-hilt-manifest/build.gradle.kts b/ui-test-hilt-manifest/build.gradle.kts index 346399d59..b55036591 100644 --- a/ui-test-hilt-manifest/build.gradle.kts +++ b/ui-test-hilt-manifest/build.gradle.kts @@ -15,15 +15,9 @@ */ plugins { id("nowinandroid.android.library") - kotlin("kapt") - id("dagger.hilt.android.plugin") + id("nowinandroid.android.hilt") } android { namespace = "com.google.samples.apps.nowinandroid.uitesthiltmanifest" } - -dependencies { - implementation(libs.hilt.android) - kapt(libs.hilt.compiler) -}