I have looked through so many similar stackoverflow posts but none of them seem to solve my specific problem. I want something like the iOS Shared Keychain storage, that any app signed by the same certificate can read and write to. The only answer everywhere is using Content Providers, but unfortunately with Content Providers, it seems that one app needs to be the host, and the other apps are the clients. I seek more of a peer-to-peer style of data sharing, where I have many apps but my users may have perhaps downloaded only a small subset of them (but more than one). There is data that will be shared between those apps, and any of the apps may be uninstalled at any time, and more apps by the same vendor might get installed at any time. In any case, the data should persist as long as there is at least one app by that vendor. When all apps are uninstalled, only then should that data be destroyed. These apps do have a common package name, but a unique application name.
Any suggestions?