n windows phone 8 silverlight application we can add / remove tiles from the code as below
ShellTile.Create(tileUri, tileData, true);
and we can get the tiles based on the Uri like below
ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString().Contains("/"));
How we can do similarly in windows phone 8.1 (universal) applications?
I could not get clear information or samples.