Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an Android app and using Roboguice 2.0.

All has gone incrediblby well, except now. I'm trying to inject my custom bindings to a service like this and it's not working.

    @Inject
private TicketService ticketService;

@Inject
private PerformanceService performanceService;

They've binded like this (first is custom app context):

 RoboGuice.setBaseApplicationInjector(
            this, 
            RoboGuice.DEFAULT_STAGE,
            Modules.override(RoboGuice.newDefaultRoboModule(this))
                .with(
                    new KoliseoModule(),
                    new DatastoreModule(this),
                    new ServiceModule()
                    ));


 public class ServiceModule extends AbstractModule {

@Override
protected void configure() {
      bind(JsonCheckinTimestampService.class).to(JsonCheckinTimestampServiceImpl.class);
    bind(PerformanceService.class).to(PerformanceServiceImpl.class);
    bind(ShowService.class).to(ShowServiceImpl.class);
    bind(TicketService.class).to(TicketServiceImpl.class);
    bind(ValidationStatisticsService.class).to(ValidationStatisticsServiceImpl.class);
}

}

Any ideas?

Thanks

share|improve this question
What exactly is not working? Where in your code is the setBaseApplicationInjector statement? Is there a specific reaason you use this statement, rather than just a list of modules files in an xml file? – Christine Sep 4 '12 at 13:47
Didn't know it can be done this way. – Javier Manzano Sep 4 '12 at 13:59
But this doesn't solve my problem and I have to do it manually – Javier Manzano Sep 4 '12 at 14:00
RoboGuice.getInjector(context).getInstance(PerformanceService.class); – Javier Manzano Sep 4 '12 at 14:04
and the problem is that I get null all the time on the injected resources – Javier Manzano Sep 4 '12 at 14:05
show 1 more comment

2 Answers

It's very probably and probably even garanteed that the Application subclass of an application is loaded & instantiated before the rest of the instances are created so you could try that. Create a "MyApplication extends Application" class and do your setup in its "onCreate()", don't forget to declare in your manifest.

share|improve this answer

The problem was that I wasn't extending RoboListActivity!! Thanks!

share|improve this answer
You don't extend a Robo class, Robo doesn't inject :-) Glad you got it going. – Christine Sep 4 '12 at 16:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.