2

I'm jus so confused about application icon sizes that need to be used for WP. My app works on all the three, 7.1 , 7.8 and 8.0. I use Windows Phone 8 SDK.

This link gives the sizes need. My question is in the WMAppManifest.xml file, since my app supports all the three, for the App icon which one do we give? the 66x66 or the 99x99. Similarly for Tile which one do I need to give? Is the app icon same as app list icon.

When I create a new WP8 project, the ApplicationIcon is of size 100x100? when the size mentioned is 99x99.

Which is the default tile size that i need to give for the app to work in both all 3 versions?

Community
  • 1
  • 1
alfah
  • 2,077
  • 1
  • 31
  • 55

1 Answers1

1

If your app targets Phone 7.1 (which can be used on 7.1, 7.8 and 8) then all you need is are the normal icons (ApplicationIcon.png and Background.png). If you want to support the new tiles in 7.8 and 8 check out this blog from the Windows Phone dev team. Also an MSDN article and a handy helper.

Shawn Kendrot
  • 12,425
  • 1
  • 25
  • 41
  • ApplicationIcon.png and Background.png should be of what size? its 100x100 for WP8 and 66x66 for WP7.1 – alfah Jul 25 '13 at 11:12
  • 1
    Use the defaults for WP7. 173x173 for Background and 62x62 for ApplicationIcon. They will be scaled for you for the other devices – Shawn Kendrot Jul 25 '13 at 15:21