remove Singleton annotation from providesSharedPreferences

This commit is contained in:
Conny Duck 2024-05-13 19:42:00 +02:00
parent 98afd26881
commit 59be2fbb82
No known key found for this signature in database
1 changed files with 0 additions and 1 deletions

View File

@ -37,7 +37,6 @@ import javax.inject.Singleton
object StorageModule {
@Provides
@Singleton
fun providesSharedPreferences(@ApplicationContext appContext: Context): SharedPreferences {
return PreferenceManager.getDefaultSharedPreferences(appContext)
}