Going through MSDN library and other forums, these are the ways to update the Windows Phone Live Tiles (afaik):
- Using push notifications,
- Background agents,
- ShellTileSchedule (to update tile's background images only).
Are there any other ways to do so?
Actually I am working on an app that get a collection of data/updates (not just background image) to be shown on tile from a Websevice. This data needs to be displayed randomly on tile.
Now looking back on the options I just have
Using push notifications,- Background agents,
ShellTileSchedule(to update tile's background images only).
And background agent have limitations (500 updates per subscription a day(if I do not use SSL), 15 sec time out etc)
So I am looking for a better solution, if there is any.
Thanks