Can I set the uwp app store display name to be different from the installed app display name?

风格不统一 提交于 2019-12-08 02:43:16

问题


I would like to have a more descriptive name (for discoverability) in the Microsoft app store, but use a shorter name for the app when it is installed. I have reserved both names. I am thinking I set the App Manifest to have the short name in the Application -> Display name, and the more descriptive, store name in Packaging -> Package display name, but I don't understand the way these two names are used so I'm just guessing. Before I try this with an actual submission, I'm wondering if someone already knows if this will work.


回答1:


Yes, you're right. "Application -> Display name" used as a name of the app in the app list. "Visual Assets -> Short name" used as a name of the app on tiles on the start screen. "Packaging -> Package display name" used as a name in the Store. Its hint explicitly says "Specifies the app name that appears in the Store. When the package is uploaded to the Store, this name is replaced."

To make this answer a bit more useful: if you're planning to localize your app's name to different languages, you can do this by specifying path to string in .resw resources like this:

ms-resource:AppTitle

Just put it right to "Display name" field (or any other field mentioned above) and it will change title depending on the language. Although note that all localized names have to be reserved in the Store.



来源:https://stackoverflow.com/questions/37631530/can-i-set-the-uwp-app-store-display-name-to-be-different-from-the-installed-app

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