Reputation: 157
When I submitted my app to the Windows Phone store, it was rejected and the report says: "The application's 'pin to start' and the 'application list' icons are generic Windows Phone icons." I have already changed the default ApplicationIcon.png to my own one. But I do not know how to change the 'pin to start' icon. The assets folder does not contain the Background.png picture. How do I have to change this 'pin to start' icon? I use Visual Studio 2012. Thanks.
Upvotes: 0
Views: 1167
Reputation: 1798
You need to change your tile assets. By default they should be in your Assets/Tiles folder of your windows phone project.
By default the FlipCycleTileSmall.png and FlipCycleTileMedium.png are used. So you can just replace those two png's with your own images.
For more information on windows phone tiles here would be a good place to start: http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662933(v=vs.105).aspx
Upvotes: 1