Skip to content

Instantly share code, notes, and snippets.

@patrykpoborca
Created August 13, 2015 15:51
Show Gist options
  • Save patrykpoborca/ccb1589712e323b369f3 to your computer and use it in GitHub Desktop.
Save patrykpoborca/ccb1589712e323b369f3 to your computer and use it in GitHub Desktop.
//dagger 2 implementation of a module
@Module
public class MyModule {
@Provides
public MyDependency providesMyDependency(){
return new MyDependency();
}
@Provides
public MyClass providesMyClass(MyDependency myDependency){
return new MyClass(myDependency);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment