I was trying to provide a common DataStore<Preferences>
so that the same preference file could be used in multiple places but I got the helpful error message:
Cannot find symbol: DaggerMyApplication_HiltComponents_SingletonC.builder()
@Module
@InstallIn(ApplicationComponent::class)
object DataStoreModule {
@Provides
fun provideDataStore(@ApplicationContext context: Context): DataStore<Preferences> = context.createDataStore("settings")
}
I can however do the following and use it within an @Inject
constructor.
@Singleton
class DataStoreProvider @Inject constructor(@ApplicationContext context: Context) {
val dataStore: DataStore<Preferences> = context.createDataStore("settings")
}
I assume that the extension createDataStore
is doing something that Hilt does not like but I'd appreciate an explanation of what is going on even if the problem is not solvable.
This worked for me:
The idea is to put
@Singleton
behind the provider method.Update on Feb 9, 2021:
Preferably, create a manager and provide that:
AppModule:
Update on March 20, 2021:
Version 1.0.0-alpha07
Update on May 1, 2021:
@Florian is totally right, I had forgotten that.
Remove
dataStoreManager
provider from your DI module. Just: