In my application, I created android:process:xxx. I am trying to put a String value in preference from the process xxx components with the key of "name". After this i am trying to get the value with same key from Activity. Activity is not belongs to process xxx.
I created my shared preference like below.
mPref = getSharedPreferences(PREF_FILE_NAME, MODE_MULTI_PROCESS);
mEditor = mPref.edit();