Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:09
Show Gist options
  • Save larkintuckerllc/bcc0c38b4023d00f708791e5e2b3a8ba to your computer and use it in GitHub Desktop.
Save larkintuckerllc/bcc0c38b4023d00f708791e5e2b3a8ba to your computer and use it in GitHub Desktop.
How-to Dagger 2 with Android: Part 1 - 7
package com.larkintuckerllc.dagger;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
@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