I want to have a centralised service app in Xamarin for database sharing between two other Xamarin apps. So, they both can work independent of each other and depends only on the centralised database. For that, I need to create a service app which can be instal either along the main apps or from play store directly and auto starts to initialise and run my sqlite database which my other apps can use whenever required. So, any body have any idea about how to achieve this?
I'm right now focused on creating an android service app in Xamarin.Forms which can initialise the database and can run as a background service without having to launch its main activity. But have not succeeded to achieve this. Is there any other approach or how should I solve this?
Thanks in Advance!