use of cx.ring.services.ConferenceService in project ring-client-android by savoirfairelinux.
the class ServiceInjectionModule method provideConferenceService.
@Provides
@Singleton
ConferenceService provideConferenceService() {
ConferenceService conferenceService = new ConferenceService();
mRingApplication.getRingInjectionComponent().inject(conferenceService);
return conferenceService;
}
Aggregations