Skip to content

Instantly share code, notes, and snippets.

View shaunpanjabi's full-sized avatar
:octocat:

Shaun Panjabi shaunpanjabi

:octocat:
View GitHub Profile
@shaunpanjabi
shaunpanjabi / LibraryAComponent.java
Created March 19, 2018 22:55
Dagger 2 Providing a Component in a module
@Singleton
@Component(modules = LibraryAModule.class)
public interface LibraryAComponent {
@Component.Builder
interface Builder {
LibraryAComponent build()
}
SomeLibADep someLibADep();