Answers for "applicationcomponent hilt not found"

0

applicationcomponent hilt not found

ApplicationComponent is Deprecated in Dagger Version 2.30
ApplicationComponent removed in Dagger Version 2.31
Alternatively SingletonComponent should be used instead of ApplicationComponent

@Module
@InstallIn(SingletonComponent::class)
class RoomModule() {
   . . .
}
Posted by: Guest on June-13-2021

Browse Popular Code Answers by Language