只需@ApplicationContext
在您的上下文参数上使用注释。
通过使用 Hilt 提供的注释上下文@ApplicationContext
,我们不需要为应用程序上下文创建提供程序。
import dagger.hilt.android.qualifiers.ApplicationContext
/* For hilt versions lower than v2.28.2 use ApplicationComponent instead of
SingletonComponent. ApplicationComponent is deprecated and even removed in
some versions above v2.28.2 so better refactor it to SingletonComponent. */
@Module
@InstallIn(SingletonComponent::class)
class ProductionModule {
@Singleton
@Provides
fun provideAppDatabase(@ApplicationContext appContext: Context): AppDatabase {
return Room
.databaseBuilder(appContext, AppDatabase::class.java, AppDatabase.DB_NAME)
.build()
}
}
注意:如果您想将活动上下文作为依赖项传递,请尝试使用应用程序上下文或重新考虑您的用例。传递活动上下文可能会导致严重的影响,例如内存泄漏。话虽如此,如果您知道自己在做什么,请使用@ActivityContext
注释来传递活动上下文。一个可能的用例可能是适配器。