我在Config.xcconfig文件中设置以下两个参数以获取appDisplayName
和bundle Identifier
从配置文件中获取。我在 xcconfig 文件中的代码如下:
appDisplayName=myapp
appIdentifier=org.prince.myapp
在 app -Info.plist文件中设置为
Bundle identifier = ${appIdentifier}
Bundle display name =${appDisplayName}
将其添加到配置下的项目中。
它工作正常,因为我已将 myapp 作为显示名称,它按原样显示在模拟器/设备中。
让我们进入正题。我想知道有没有办法改变PRODUCT_NAME
变量值。我 PRODUCT_NAME=custom
在配置文件中设置,但这似乎不起作用。