Skip to content

Instantly share code, notes, and snippets.

@cloudbank
Created January 25, 2018 04:26
Show Gist options
  • Save cloudbank/fc8e4f56bc81a018a3684a5f2523703e to your computer and use it in GitHub Desktop.
Save cloudbank/fc8e4f56bc81a018a3684a5f2523703e to your computer and use it in GitHub Desktop.
public class TestRepository {
@Inject
public TestRepository() {}
}
public class MainActivity extends DaggerActivity {
@Inject
TestRepository testRepository;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toast.makeText(this, "The repo is injected" + testRepository, Toast.LENGTH_LONG).show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment