I have to share some complex data between two apps. Both the apps are using same "shared user id" and signed using same "key store". Now the data is shared using application context. I would like to replace this by content providers. Is there any samples demonstrating custom content providers in Xamarin Forms?
Answers
You can achieve it by dependence service for content provider(no matter of storing data or striving data), this feature is related to Android, Based on your needs, I think you can achieve it by creating a Custom ContentProvider.
https://docs.microsoft.com/en-us/xamarin/android/platform/content-providers/custom-contentprovider
Here is a demo achieve it in xamarin android, you can refer to it.
https://docs.microsoft.com/en-us/samples/xamarin/monodroid-samples/platformfeatures-simplecontentprovider/