Reputation: 2622
In Windows Phone Store for Windows Phone 8.1 OS are applications with or without the with Live Tile sign under logo in app overview.
Which criteria must the application meet to be detected by Store as it supports Live Tile?
I know that the answer should be obvious – it must support Live Tile, but it is not as simple as it looks like. My app is not detected as it supports Live Tile.
PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync
, uploads the PushNotificationChannel.Uri
to the server and the server sends tile updates via WNS. The tile is regularly updated.Upvotes: 1
Views: 119
Reputation: 2622
Most probably the Store show the with Live Tile tag for Silverlight (XAP) apps but not for Store (Runtime) apps.
Upvotes: 0
Reputation: 3568
Contacted MSFT Support:
There is no explicit check. The flag is set during manual instigation of the app in the publishing process.
As the app submission has been changed to publish your app immediately, this flag will only come up once your app is manually checked. That usually only happens some days after your app is published and only in rare cases for updates (or when somebody complains about your app).
Also: The tester has to notice that there is a live tile. If it comes through push or there is no data at the moment of testing or it requires a specific setup, that will just not be visible.
I recommend hinting your live tile in the certification notes field (under describe your package) to make sure the tester is informed that you have a live tile option.
Upvotes: 1