Hi!
For the latest app I developed I used XamlRenderingBackgroundTask and background updates to generate live tile (I have 1 dependency project, which I think causes the problem), which while debugging works all fine, but when I push update to WP store and then download it isn't!
Have anyone had similar problems or know a possible solution for this?
Solution: The background task was attempting to create temporary image (which is later sent to tile) in the installedLocation. As this directory is read-only, it caused error. I fixed it my changing it from installedLocation to localFolder. More info here - msdn.microsoft.com/library/windows/apps/ff402541(v=vs.105).aspx (do not have enough reputation to post links)
For the latest app I developed I used XamlRenderingBackgroundTask and background updates to generate live tile (I have 1 dependency project, which I think causes the problem), which while debugging works all fine, but when I push update to WP store and then download it isn't!
Have anyone had similar problems or know a possible solution for this?
Solution: The background task was attempting to create temporary image (which is later sent to tile) in the installedLocation. As this directory is read-only, it caused error. I fixed it my changing it from installedLocation to localFolder. More info here - msdn.microsoft.com/library/windows/apps/ff402541(v=vs.105).aspx (do not have enough reputation to post links)
Last edited: