Skip to content

Instantly share code, notes, and snippets.

@geftimov
Created November 5, 2014 12:58
Show Gist options
  • Save geftimov/5c2caab9cf5c1d061507 to your computer and use it in GitHub Desktop.
Save geftimov/5c2caab9cf5c1d061507 to your computer and use it in GitHub Desktop.
Otto config.
// in build gradle
compile 'com.squareup:otto:1.3.5'
//in dagger module
@Provides
@Singleton
Bus provideBus() {
return new Bus();
}
//usage
bust.post(event)
@Subscribe
public void eventGot(event) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment