From e3e14edb5d5292f055426a1561b3499ef79024fa Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 13 Nov 2022 13:14:44 +0530 Subject: [PATCH] refactor(coroutine-utils): break Hilt dependency --- coroutine-utils/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coroutine-utils/build.gradle.kts b/coroutine-utils/build.gradle.kts index 806e8832..04085e18 100644 --- a/coroutine-utils/build.gradle.kts +++ b/coroutine-utils/build.gradle.kts @@ -11,5 +11,5 @@ plugins { dependencies { api(libs.kotlinx.coroutines.core) - implementation(libs.dagger.hilt.core) + implementation(libs.javax.inject) }