I’m trying to create new icons for my windows phone 7 app. Whenever I run the app I get the default icons. This has been my process.
- I created a 200 px x 200 px icon in photoshop.
- I exported 62 px, 99 px and 173 px square versions as PNG files.
- I copied these to the images folder in my project and then ADDed them as existing files in Visual Studio 2010.
- I selected each image and changed their properties to “Content” and “Copy Always”.
- I right-clicked properties and selected the appropriate icons for Icon and BackgroundImage.
- Cleaned the solution and uninstalled previous installations from the phone.
- Rebuilt the project and checked the WMAppManifest.xml to be sure the proper PNGs were listed.
- I redeploy the app and the default icons continue to show in the emulator and the device when either type of deploy is tried.
Any suggestions as to what I’m missing?
The art files you add to your project need to be in the root directory of your project with your App.xaml. At least this is what fixed it for me. When I added the new art to the images directory they showed up in the properties panel and I could select them. However they did not get used when deployed. I did try changing the path manually in the manifest but that didn’t work (or I typed it wrong). Moving the icon art to the root fixed the issue.