I cannot update manually pinned tile from Background Task.
var updater = TileUpdateManager.CreateTileUpdaterForApplication();
updater.EnableNotificationQueue(true);
updater.Clear();
XmlDocument tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileWideText03);
var title = "Test text";
string titleText = title == null ? String.Empty : title;
tileXml.GetElementsByTagName("text")[0].InnerText = titleText;
updater.Update(new TileNotification(tileXml));
Exception fires on CreateTileUpdaterForApplication(); with message: The application identifier provided is invalid.
I heard what this problem occurs on Windows Phone with 8.1 update, but I not found any solutions... Please help.