I have a osgi bundle in felix contanier, that exports service
@Component(label= "App Service",
description = "App Service",
immediate = true, enabled = true, metatype=true)
@Service(AppServiceImpl.class)
public class AppServiceImpl implements AppService {
}
in web console I see that service starts normally.
Then I want to inject it with @Reference felix scr annotation in other bundle. I understand that there should be some injector, but could not find it.