Skip to content

Instantly share code, notes, and snippets.

@princessdharmy
Created January 29, 2019 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save princessdharmy/fb43a253d8331306498584b411c534ae to your computer and use it in GitHub Desktop.
Save princessdharmy/fb43a253d8331306498584b411c534ae to your computer and use it in GitHub Desktop.
@Module
public class HorizonAppModule {
@Singleton
@Provides
Context provideContext(HorizonMainApplication application){
return application;
}
@Singleton
@Provides
Utils provideUtils(Context context){
return new Utils(context);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment