I am working on a POC where I want to share data between two or more apps on the same device. I have read about Shared Preferences for Android but the article said that Apps can only read data stored by them or they can store data as global, in which case, all apps on the OS can read the stored data. Similarly, I am thinking of using Keychain for iOS.
The problem in short: I want to be able to share a piece of data with other apps on the device.
Apart from shared preferences and keychain, is there any other way to accomplish this?
Also, all the apps will be written using React Native.