I’m working on a third party app and I need to remove RoboGuice and I need to know what I need to do to replace various getInjector methods with android code
In an activity I have
private CodeView codeView;
...
this.codeView.setHelper(RoboGuice.getInjector().getInstance(Helper.class));
Is this just a case of setting up an instance of the Helper class and initialising it in onCreate of the activity?
I also need to know how/what I need to do to replace
@Inject
private Configuration config;
It’s just like creating a new instance of any object. In onCreate() do: