I have two applications and I want to be able to share a String value
between them. For example: user changes the String in app A
, when app B
is launched, I want it to read the updated String
(and vice versa).
I was trying to use SharedPreferences with Context.MODE_WORLD_WRITABLE
, but it's been deprecated.
How can I achieve this?
EDIT: App A has to save the value without launching app B. App B has to be able to read that value without launching app A.
I looked at ContentProviders
, but they look too complex, especially for a simple String sharing.
Try http://developer.android.com/training/sharing/send.html or http://developer.android.com/guide/topics/providers/content-providers.html to share data between 2 applications