Skip to content

Instantly share code, notes, and snippets.

@manuelvicnt
Created August 23, 2021 10:44
Show Gist options
  • Save manuelvicnt/e37d69047589ecbd0fcd8b8aef3dcf53 to your computer and use it in GitHub Desktop.
Save manuelvicnt/e37d69047589ecbd0fcd8b8aef3dcf53 to your computer and use it in GitHub Desktop.
@Module
@InstallIn(SingletonComponent::class)
object DataModule {
@Singleton
@Provides
fun provideMusicDB(@ApplicationContext context: Context): MusicDatabase {
return Room.databaseBuilder(
context, MusicDatabase::class.java, "music.db"
).build()
}
}
@Gusti21111995
Copy link

yes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment