python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why using different scopes with Android Hilt if all can work with SingletonComponent
To add a Hilt module you need to do this:
@Module
@InstallIn(SingletonComponent::class)
abstract class MyModule{
...
}
There are different scopes such as ActivityComponent, ViewModelComponent, etc, b...
Jesus Almaral - Hackaprende
Votes: 0
Answers: 2
Why Hilt isn't necessary for unit tests, but it is necessary for UI tests?
Hilt testing guide documentaton has this paragraph about Unit test
Hilt isn't necessary for unit tests, since when testing a class that uses constructor injection, you don't need to use Hilt to insta...
milad mosavie
Votes: 0
Answers: 1
Is there something stuck my app before Application is initialized?
I am using Jetpack Compose. When I open my app, it displays a blank page with a status bar in primary color before my first activity shows up, for some reasons I can't post code snippets here please c...
Wayne
Votes: 0
Answers: 1
Android Dagger/Hilt providers same return value?
I need to know in my Repository whether I have internet connection or not (DB or API), so in my AppModule I use:
@InstallIn(SingletonComponent::class)
@Module
object AppModule {
@Singleton
@P...
CookieMonster
Votes: 0
Answers: 1