ionic项目工程名称和app显示名称能否分开?

image.png

设计iOS项目的时候,name标签同时决定了工程名称和app显示名称,当你需要修改名称后,ionic会提示不支持动态修改项目名称,需要删除iOS项目再添加。这样一来在xcode工具里修改的一些配置项又需要重新设置。官方文档只看到这一处名称

阅读 1.5k
1 个回答

使用short属性,原文:

short name
Specifies an optional display name for the app. Sometimes the app name should be displayed differently on device's home screen than on informational and app-store interfaces due to limited space.

Examples:

<widget ...>
   <name short="HiCdv">HelloCordova</name>
</widget>