I\'m registering a preference change listener like this (in the onCreate() of my main activity):
onCreate()
SharedPreferences prefs = PreferenceManager.get
While reading Word readable data shared by first app,we should
Replace
getSharedPreferences("PREF_NAME", Context.MODE_PRIVATE);
with
getSharedPreferences("PREF_NAME", Context.MODE_MULTI_PROCESS);
in second app to get updated value in second app.
But still it is not working...