I have secondary Tile for each page in my app. When i switch my app to Tombstone state, its failed to navigate corresponding page from Secondary Tile. App loading the previous page opened before deactivated.
Here the sample code for Secondary Tile creation.
if (!app.TileExists("/requestcalls"))
{
StandardTileData NewTileData = new StandardTileData
{
BackgroundImage = new Uri("/Assets/Images/Tile.png", UriKind.Relative),
Title = Request Calls",
BackTitle = Request Calls",
BackContent = "Add a new request",
}; ShellTile.Create(new Uri("/requestcalls.xaml?", UriKind.Relative), NewTileData); }