I was wondering if a service (myService.class) can be created twice(or more) when using the same class. for example if the first initiation is on Application (which means it keeps running on the background) and the others happens on broadcast received
startService(new Intent(this, myService.class));
or if the service is currently running then the others are not initialize..?