Skip to content

Instantly share code, notes, and snippets.

@GauravChaddha1996
Created August 24, 2018 05:04
Show Gist options
  • Save GauravChaddha1996/335dbbe1d60dc1b1e0104434c2387443 to your computer and use it in GitHub Desktop.
Save GauravChaddha1996/335dbbe1d60dc1b1e0104434c2387443 to your computer and use it in GitHub Desktop.
@Singleton
class MyDatabase implements Database {
@Inject
MyDatabase(@Named("ApplicationContext") Context context) {
// more code
}
}
/**************************************************************/
@Module
class DatabaseModule {
MyDatabase dbImpl;
@Inject
DatabaseModule(MyDatabase myDB) {
this.dbImpl = myDB;
}
@Provides
@Singleton
Database getDatabase() {
return dbImpl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment