We wanted to run a service continuously in background in Android. We also know that Android has introduced background execution limits from API 26 where it clearly mentions that service will get killed within very less time once Application goes in background or swiped up and we have also observed the same when we tried it.
But currently if we see the list of Running Services window using Developer mode we see that there are few popular Apps like Instagram or Facebook where we can see that it would be running in background and would not also get killed if we swipe the application.
Even if we consider foreground services they require to show a notification but in this scenario these apps do not show any foreground service notification. So, we think that they don't use foreground services.
Is there any way that Android is providing these type of experience so that I could do it even for my Application?
Can anyone help me in this? Help is appreciated.