I have two services in my application - lA_svc
& lB_svc
.
The MainActivity
lauches lA_svc
- which context
should I use for launching the service from the activity?
Now lA_svc
sends an intent to launch lB_svc
- which context
should I use here in the startService()
method?
After a while, lB_svc
sends an intent
to launch lA_svc
, which context
do I use here?
Can you please link any gist(s), example(s) to understand the context as per which the services are to be launched?