Skip to content

Instantly share code, notes, and snippets.

@vestrel00
Created July 26, 2017 15:53
Show Gist options
  • Save vestrel00/88df6e14d0febd5aa0bdd9a75ddd11b9 to your computer and use it in GitHub Desktop.
Save vestrel00/88df6e14d0febd5aa0bdd9a75ddd11b9 to your computer and use it in GitHub Desktop.
A: 4 - util/PerActivityUtil.java
@PerActivity
public final class PerActivityUtil {
private final Activity activity;
@Inject
PerActivityUtil(Activity activity) {
this.activity = activity;
}
public String doSomething() {
return "PerActivityUtil: " + hashCode() + ", Activity: " + activity.hashCode();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment