Skip to content

Instantly share code, notes, and snippets.

@jeremyrempel
Created June 29, 2019 17:55
Show Gist options
  • Save jeremyrempel/f88583e1aa179a9909c4295f06c12d4b to your computer and use it in GitHub Desktop.
Save jeremyrempel/f88583e1aa179a9909c4295f06c12d4b to your computer and use it in GitHub Desktop.
Dagger Room Module
@Component DatabaseModule(appContext: Context) {
@Provides
@Singleton
fun providesRoom: Room {
return Room
.databaseBuilder(appContext, AppDatabase::class.java, "database-name")
.build
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment