I Want to create a service which run's in background even if my app closes for data sync of Sqlite and mysql.
i have tried some methods but unable to achieve my goal.
if anyone can give me a sample app which runs a service in the background even if app close
Thanks
If you want to run your background functionality even after your app closes in certain interval, we need to create a foreground service. I am talking about android.
Firstly create a service class in Android project folder.Here I am creating a service named SqlService.
In your MainActivity, you can start the service by using messeging center call from shared project.We also need to create a Notification channel.
Add this in your
MainActivity
Now you can Start the service from your shared Project like, Lets say on a Button click.
Also we can stop the service on another button click like:
Revert back if you have any doubts.