I want to make a Background Service in my Kivy Application
I have a parameter like the following in my .spec file that I use for compiling with Buildozer;
# (list) List of service to declare
services = MyApp:service.py
The service I created runs when I start the application. I want the service to run in the background when the user opens the internet even if the application is not started. Is there a way to do this?
Thanks for your helps