Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happens if I change the ProductID of an already existing WP app?

I have two applications already submitted to the marketplace and just now I realized that they have the same ProductIDs in the WMAppManifest and AssemblyInfo files - so I can not have both of the apps installed (deployed) to the emulator at the same time.

If during the submission process this ProductID remains the same, then I am afraid that users will not be able to install both of my apps at once. So I guess my question is: does it really matter what ProductID I specify in those two files? or does the submission process take care of it and generates a truly unique GUID?

like image 550
Marius Bughiu Avatar asked Jan 23 '13 17:01

Marius Bughiu


1 Answers

The product Id is assigned when you create the app in the app hub. For WP7.X especially, most of what you put in the WMManifest.xml is over/re-written as part of the certification process.

The bigger issue you are likely to hit is that you can't load multiple apps on a device with the same ProductId so if you ever want to load them in the same emulator instance or on the same physical device you'll need to change one of them.

like image 66
Matt Lacey Avatar answered Sep 22 '22 18:09

Matt Lacey