diff --git a/component/common/build.gradle b/component/common/build.gradle index f728173b..cf064b8f 100644 --- a/component/common/build.gradle +++ b/component/common/build.gradle @@ -1,5 +1,6 @@ plugins { alias(libs.plugins.com.android.library) + id 'com.google.dagger.hilt.android' } android { @@ -33,5 +34,12 @@ dependencies { androidTestImplementation libs.androidx.test.ext.junit androidTestImplementation libs.androidx.test.espresso.core + // Hilt (DI) + implementation libs.com.google.dagger.hilt.android + annotationProcessor libs.com.google.dagger.hilt.compiler + implementation project(':shared:ui') + implementation project(':utils') + implementation project(':model') + implementation project(':data') } \ No newline at end of file