Cloning a Windows Store app - What should be changed?

冷暖自知 提交于 2019-12-11 00:06:53

问题


I need to create a copy of a Windows Store app that will coexist with the original one on the store. I plan to create a copy of the solution folder and then change the package display name in appxmanifest (Packaging).

Is there anything else I need to change to prevent conflicts between the apps?


回答1:


Changing the package display name won't be sufficient and even it's not needed - you can have two apps with the same name on your phone. The most important is Name (in Identity node) and PhoneProductId (in PoneIdentity node) - they must be different for each app. You won't edit them easily by opening packageappx.manifest file by double click, instead right click on the file, choose View code and edit mentioned data:

<Identity Name="SmthFromStoreWithLittleChange" Publisher="CN=something" Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="082abc73-hereAlsoLittleChange-ea7ea4735fbd" PhonePublisherId="any GUID here" />

Remember that each of this apps has its own LocalData folder (LocalSettins and other data also).



来源:https://stackoverflow.com/questions/35118128/cloning-a-windows-store-app-what-should-be-changed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!