I want to share data between different Android applications. On iOS applications I use the Keychain with an accessGroup property so the data is only accessible from my applications plus the data remains even if I delete all applications.
What mechanism can I use to do the same on Android?
Thanks in advance,
You can use ContentProviders. Here is a good tutorial on ContentProviders. And this post specifically tells about data sharing using it.