I want to call a service when a certain activity starts. So, here\'s the Service class:
public class UpdaterServiceManager extends Service { private fin
startService(new Intent(this, MyService.class));
Just writing this line was not sufficient for me. Service still did not work. Everything had worked only after registering service at manifest
...