Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created December 1, 2017 13:11
Show Gist options
  • Save larkintuckerllc/3263c79135c6086a83eeff85f49a4d64 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/3263c79135c6086a83eeff85f49a4d64 to your computer and use it in GitHub Desktop.
How-to Dagger 2 with Android: Part 3 - 1
...
@Module
class MyModule {
@Provides
@Singleton
static MyExample provideMyExample() {
return new MyExampleImpl();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment