Roaming data not syncing between devices

102 views Asked by At

I have a Windows 8.1 Universal app (not yet published in store) and I want to be able to sync data between app from a desktop and app from Tablet. Both pc and tablet are on the same Microsoft account.

I have some roaming data and I want to sync them between my devices. The data are saved locally corectly but when I go to the other device I have, and open the app, the data are not synced. Do I need to add anything more than:

ApplicationData.Current.RoamingSettings.Values["somekey"] = "something";
1

There are 1 answers

3
Sailesh Babu Doppalapudi On

As you are looking the app locally, the date is not changing on other device if you change one. Here the data is being saved locally. But when you publish the app in store, roaming data will be saved on Microsoft servers and then change of value at one location will affect the other.