I know that some peoples view is that you should not create persistent services.
But for those of us that want to increase our knowledge, how does one go about crea
You can only make your service persistent if you are developing system apps. These services will be basically un-killable, and are labeled as "PERS" in the output of the "adb shell dumpsys activity" command. It's not very well documented, so I did a quick write-up on Persistent services in Android...hopefully it will help some people out.
But for non-system apps, startForeground is your best option.
There is absolutely no way of preventing the OS from killing your service.