Bundle|Bundle display name 与 Bundle name ,Bundle identifier

  • Bundle identifier: 就是应用程序的唯一标识符.每个APP的Bound ID不可重复(重复的话上架不了),一般都会设置成公司的域名的倒着,或者再加上app的名字
  • 【Bundle|Bundle display name 与 Bundle name ,Bundle identifier】bundle name 其实就是目标项目的名字(TARGETS下面的名字),即你创建Xcode项目时取得名字,如果想要 修改,按下面步骤:
Bundle|Bundle display name 与 Bundle name ,Bundle identifier
文章图片
Paste_Image.png
  • bundle display name最终显示给用户的应用程序名。如果设置成动态参数$(PRODUCT_NAME),就是默认和bundle name一样,默认情况下Bundle Display Name就等同于项目名称
注意:在部分情况下如果Product Name为中文字符,会导致编译运行在真机时,报 Could not inspect the application package. 错误.
所以一般的情况是,将Product Name设置成为了英文名,而将Bundle Display Name设置为中文名(就你最终要展示在用户手机桌面上的app名字)。

    推荐阅读