I created a very simple UWP app
public MainPage()
{
this.InitializeComponent();
// In a real app, these would be initialized with actual data
string from = "Jennifer Parker";
string subject = "Photos from our trip";
string body = "Check out these awesome photos I took while in New Zealand!";
// Construct the tile content
TileContent content = new TileContent()
{
Visual = new TileVisual()
{
TileMedium = new TileBinding()
{
Content = new TileBindingContentPhotos()
{
Images =
{
new TileBasicImage()
{
Source = "Assets/images-15.jpg"
},
new TileBasicImage()
{
Source = "Assets/images-7.jpg"
},
new TileBasicImage()
{
Source = "Assets/trolltunga.jpg",
}
// TODO: Can have 12 images total
}
}
}
// TODO: Add other tile sizes
}
};
var notification = new TileNotification(content.GetXml());
TileUpdateManager.CreateTileUpdaterForApplication().Update(notification);
}
So it app just for check how long tile will update. So I read that this tile will update all the time but tile stoped update after 1-2 days (wasn't able to check correctly). So my question is - does somebody know about life cycle update for tiles? I found information about background task, but this tile doesn't use customs background task