diff --git a/feature/wallet/build.gradle b/feature/wallet/build.gradle index e7df871..4f143b1 100644 --- a/feature/wallet/build.gradle +++ b/feature/wallet/build.gradle @@ -1,5 +1,6 @@ plugins { alias(libs.plugins.androidLibrary) + id 'com.google.dagger.hilt.android' } android { @@ -29,7 +30,20 @@ dependencies { implementation libs.appcompat implementation libs.material + implementation libs.navigation.fragment + implementation libs.navigation.ui testImplementation libs.junit androidTestImplementation libs.ext.junit androidTestImplementation libs.espresso.core + implementation libs.androidx.swiperefreshlayout + + // Hilt (DI) + implementation libs.com.google.dagger.hilt.android + annotationProcessor libs.com.google.dagger.hilt.compiler + + // Project modules + implementation project(':model') + implementation project(':utils') + implementation project(':data') + implementation project(':shared') } \ No newline at end of file