In my app I´m starting a Service from my Application class and I want to run that service after reboot too.
As the Application class is instanced before the actual BootReceiver according to this post
https://stackoverflow.com/a/28131215/2324388
I´m wondering if we actually need an receiver or if it is enough to have something in the manifest with BOOT_COMPLETED.
Is there any option to start the app on boot without the need of listening to the event?