I have 2 processes in my application. From one process i save data in to SharedPreference. From second process - retrieve. When i retrieve data, i recieve sharedprefernces with old data(i check xml file and see, that currently data in file and data that was recieved are different). It looks like this data was cached. I changed saving methods (commit/apply) but no result. PS: just for example http://pastebin.com/Zx2ffvSg
feedback
|
|
The solution is add to neccesary flags Context.MODE_MULTI_PROCESS flag when open shared preference. | |||||
|
feedback
|